fix username being copied instead of password

This commit is contained in:
2025-12-05 21:18:55 +03:00
parent ff6885eb4c
commit 9254e1a69c

View File

@@ -25,7 +25,7 @@ public partial class EntryEditWindow: Window
username = username.Trim();
if (username.Length == 0) return;
string password = UsernameEdit.Text ?? "";
string password = PasswordEdit.Text ?? "";
password = password.Trim();
if (password.Length == 0) return;