From 20d25b50cdebad77a86bbbc2ed1d6d21e96756b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20B=C3=BCchel?= Date: Mon, 19 Apr 2021 16:37:02 +0200 Subject: [PATCH] SEBWIN-466: Fixed issue where first letter wouldn't get registered in password fields of configuration tool. --- SebWindowsConfig/SebWindowsConfigForm.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/SebWindowsConfig/SebWindowsConfigForm.cs b/SebWindowsConfig/SebWindowsConfigForm.cs index daaa1f94..93b145f6 100644 --- a/SebWindowsConfig/SebWindowsConfigForm.cs +++ b/SebWindowsConfig/SebWindowsConfigForm.cs @@ -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; } }