SEBWIN-466: Fixed issue where first letter wouldn't get registered in password fields of configuration tool.
This commit is contained in:
parent
65dd736822
commit
20d25b50cd
1 changed files with 2 additions and 4 deletions
|
@ -878,10 +878,8 @@ namespace SebWindowsConfig
|
|||
{
|
||||
// and when the password texts aren't the same anymore, this means the user tries to edit the password
|
||||
// (which is only the placeholder right now), we have to clear the placeholder from the textFields
|
||||
passwordField.Text = "";
|
||||
confirmPasswordField.Text = "";
|
||||
password = "";
|
||||
confirmPassword = "";
|
||||
passwordField.Text = password;
|
||||
confirmPasswordField.Text = confirmPassword;
|
||||
passwordFieldsContainHash = false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue