SEBWIN-466: Fixed issue where first letter wouldn't get registered in password fields of configuration tool.

This commit is contained in:
Damian Büchel 2021-04-19 16:37:02 +02:00
parent 65dd736822
commit 20d25b50cd

View file

@ -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;
}
}