From 9254e1a69ce9c94529d04f0dc440a8a94481b483 Mon Sep 17 00:00:00 2001 From: Slavasil Date: Fri, 5 Dec 2025 21:18:55 +0300 Subject: [PATCH] fix username being copied instead of password --- src/KeyKeeper/Views/EntryEditWindow.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/KeyKeeper/Views/EntryEditWindow.axaml.cs b/src/KeyKeeper/Views/EntryEditWindow.axaml.cs index d0017e0..1abe7ee 100644 --- a/src/KeyKeeper/Views/EntryEditWindow.axaml.cs +++ b/src/KeyKeeper/Views/EntryEditWindow.axaml.cs @@ -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;