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" x:DataType="vm:EntryEditViewModel"
Title="Add Entry" Title="Add Entry"
CanResize="True" CanResize="True"
MinWidth="560" MinWidth="540"
MinHeight="400" MinHeight="400"
Width="560" Width="540"
Height="400" Height="400"
Background="White"> Background="White">

View File

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