change dot to bullet

This commit is contained in:
Kyle Spearrin 2017-12-30 12:02:51 -05:00
parent 3f46f83ec8
commit 2235f1f7af
3 changed files with 4 additions and 4 deletions

View File

@ -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();

View File

@ -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;

View File

@ -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();