From 0beb0702c7545a01336ca62cc72c3ca1dc1793d3 Mon Sep 17 00:00:00 2001 From: Slavasil Date: Sun, 3 May 2026 20:15:20 +0300 Subject: [PATCH] increase EntryEditWindow width, closes #10 --- src/KeyKeeper/Views/EntryEditWindow.axaml | 4 ++-- src/KeyKeeper/Views/EntryEditWindow.axaml.cs | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/KeyKeeper/Views/EntryEditWindow.axaml b/src/KeyKeeper/Views/EntryEditWindow.axaml index b84fe60..c550a6e 100644 --- a/src/KeyKeeper/Views/EntryEditWindow.axaml +++ b/src/KeyKeeper/Views/EntryEditWindow.axaml @@ -6,9 +6,9 @@ x:DataType="vm:EntryEditViewModel" Title="Add Entry" CanResize="True" - MinWidth="560" + MinWidth="540" MinHeight="400" - Width="560" + Width="540" Height="400" Background="White"> diff --git a/src/KeyKeeper/Views/EntryEditWindow.axaml.cs b/src/KeyKeeper/Views/EntryEditWindow.axaml.cs index 3ef68a8..7e02335 100644 --- a/src/KeyKeeper/Views/EntryEditWindow.axaml.cs +++ b/src/KeyKeeper/Views/EntryEditWindow.axaml.cs @@ -20,9 +20,6 @@ public partial class EntryEditWindow : Window _viewModel = new EntryEditViewModel(); DataContext = _viewModel; - MinWidth = 500; - MinHeight = 400; - if (PasswordEdit != null) { PasswordEdit.TextChanged += PasswordTextChanged;