1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-23 11:45:38 +01:00

revert colorized password on password generator

This commit is contained in:
Kyle Spearrin 2018-12-15 16:56:06 -05:00
parent 9d8a9387bc
commit ee9ecfbee9
2 changed files with 3 additions and 2 deletions

View File

@ -21,7 +21,7 @@ namespace Bit.App.Models.Page
{
_password = value;
PropertyChanged(this, new PropertyChangedEventArgs(nameof(Password)));
PropertyChanged(this, new PropertyChangedEventArgs(nameof(FormattedPassword)));
// PropertyChanged(this, new PropertyChangedEventArgs(nameof(FormattedPassword)));
}
}

View File

@ -67,7 +67,8 @@ namespace Bit.App.Pages
Tgr = new TapGestureRecognizer();
Password.GestureRecognizers.Add(Tgr);
Password.SetBinding(Label.FormattedTextProperty, nameof(PasswordGeneratorPageModel.FormattedPassword));
// Password.SetBinding(Label.FormattedTextProperty, nameof(PasswordGeneratorPageModel.FormattedPassword));
Password.SetBinding(Label.TextProperty, nameof(PasswordGeneratorPageModel.Password));
SliderCell = new SliderViewCell(this, _passwordGenerationService, _settings);