increase EntryEditWindow width, closes #10

This commit is contained in:
2026-05-03 20:15:20 +03:00
parent a5f7e0ab2b
commit 0beb0702c7
2 changed files with 2 additions and 5 deletions

View File

@@ -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">

View File

@@ -20,9 +20,6 @@ public partial class EntryEditWindow : Window
_viewModel = new EntryEditViewModel();
DataContext = _viewModel;
MinWidth = 500;
MinHeight = 400;
if (PasswordEdit != null)
{
PasswordEdit.TextChanged += PasswordTextChanged;