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