mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
revert colorized password on password generator
This commit is contained in:
parent
9d8a9387bc
commit
ee9ecfbee9
2 changed files with 3 additions and 2 deletions
|
@ -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)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue