Use a predetermined default password length field

This commit is contained in:
2023-04-16 20:41:33 +02:00
parent 605f345dc0
commit 0987b4c280
3 changed files with 14 additions and 6 deletions

View File

@@ -67,7 +67,7 @@ partial class GeneratePassword
//
passwordLength.Location = new Point(12, 77);
passwordLength.Name = "passwordLength";
passwordLength.PlaceholderText = "16";
passwordLength.PlaceholderText = PasswordGenerator.DEFAULT_LENGTH;
passwordLength.Size = new Size(156, 23);
passwordLength.TabIndex = 3;
//
@@ -132,4 +132,4 @@ partial class GeneratePassword
private CheckBox noSymbols;
private Button generate;
private Button cancel;
}
}