diff --git a/src/App/Models/Page/PinPageModel.cs b/src/App/Models/Page/PinPageModel.cs index 933167d0f..0e5baae00 100644 --- a/src/App/Models/Page/PinPageModel.cs +++ b/src/App/Models/Page/PinPageModel.cs @@ -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(); diff --git a/src/App/Models/Page/VaultViewCipherPageModel.cs b/src/App/Models/Page/VaultViewCipherPageModel.cs index 90fc1fd19..f6f16d0cb 100644 --- a/src/App/Models/Page/VaultViewCipherPageModel.cs +++ b/src/App/Models/Page/VaultViewCipherPageModel.cs @@ -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; diff --git a/src/iOS.Extension/LockPinViewController.cs b/src/iOS.Extension/LockPinViewController.cs index 0587ff744..332b1f848 100644 --- a/src/iOS.Extension/LockPinViewController.cs +++ b/src/iOS.Extension/LockPinViewController.cs @@ -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();