1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-20 10:13:42 +00:00

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

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