mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Update PasswordLength property on password generation
This commit is contained in:
@@ -21,7 +21,11 @@ namespace ModernKeePass.ViewModels
|
||||
public double PasswordLength
|
||||
{
|
||||
get { return _settings.GetSetting(Constants.Settings.PasswordGenerationOptions.PasswordLength, 25); }
|
||||
set { _settings.PutSetting(Constants.Settings.PasswordGenerationOptions.PasswordLength, value); }
|
||||
set
|
||||
{
|
||||
_settings.PutSetting(Constants.Settings.PasswordGenerationOptions.PasswordLength, value);
|
||||
RaisePropertyChanged(() => PasswordLength);
|
||||
}
|
||||
}
|
||||
public bool UpperCasePatternSelected
|
||||
{
|
||||
|
Reference in New Issue
Block a user