mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
change dot to bullet
This commit is contained in:
parent
3f46f83ec8
commit
2235f1f7af
3 changed files with 4 additions and 4 deletions
|
@ -15,7 +15,7 @@ namespace Bit.App.Models.Page
|
||||||
var newText = string.Empty;
|
var newText = string.Empty;
|
||||||
for(int i = 0; i < 4; i++)
|
for(int i = 0; i < 4; i++)
|
||||||
{
|
{
|
||||||
newText += _pin.Length <= i ? "- " : "● ";
|
newText += _pin.Length <= i ? "- " : "• ";
|
||||||
}
|
}
|
||||||
|
|
||||||
return newText.TrimEnd();
|
return newText.TrimEnd();
|
||||||
|
|
|
@ -112,7 +112,7 @@ namespace Bit.App.Models.Page
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public string MaskedLoginPassword => RevealLoginPassword ?
|
public string MaskedLoginPassword => RevealLoginPassword ?
|
||||||
LoginPassword : LoginPassword == null ? null : new string('●', LoginPassword.Length);
|
LoginPassword : LoginPassword == null ? null : new string('•', LoginPassword.Length);
|
||||||
public ImageSource LoginShowHideImage => RevealLoginPassword ?
|
public ImageSource LoginShowHideImage => RevealLoginPassword ?
|
||||||
ImageSource.FromFile("eye_slash.png") : ImageSource.FromFile("eye.png");
|
ImageSource.FromFile("eye_slash.png") : ImageSource.FromFile("eye.png");
|
||||||
|
|
||||||
|
@ -656,7 +656,7 @@ namespace Bit.App.Models.Page
|
||||||
{
|
{
|
||||||
if(_maskedValue == null && Value != null)
|
if(_maskedValue == null && Value != null)
|
||||||
{
|
{
|
||||||
_maskedValue = new string('●', Value.Length);
|
_maskedValue = new string('•', Value.Length);
|
||||||
}
|
}
|
||||||
|
|
||||||
return _maskedValue;
|
return _maskedValue;
|
||||||
|
|
|
@ -92,7 +92,7 @@ namespace Bit.iOS.Extension
|
||||||
var newText = string.Empty;
|
var newText = string.Empty;
|
||||||
for(int i = 0; i < 4; i++)
|
for(int i = 0; i < 4; i++)
|
||||||
{
|
{
|
||||||
newText += PinTextField.Text.Length <= i ? "- " : "● ";
|
newText += PinTextField.Text.Length <= i ? "- " : "• ";
|
||||||
}
|
}
|
||||||
|
|
||||||
PinLabel.Text = newText.TrimEnd();
|
PinLabel.Text = newText.TrimEnd();
|
||||||
|
|
Loading…
Reference in a new issue