From 3fcaf17af178933a9508978606eb0f323d9cb283 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 28 Jun 2026 19:21:20 +0000 Subject: [PATCH] Widen main window and enlarge solution chooser dialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Match the main window's width to the solution chooser (660) and make the chooser taller (460→600) so longer solution/branch lists need less scrolling. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01EpQGGpGNzXFYPbwkXiNRpR --- src/Views/ChooserDialog.axaml | 4 ++-- src/Views/MainWindow.axaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Views/ChooserDialog.axaml b/src/Views/ChooserDialog.axaml index cb6828b..81d126e 100644 --- a/src/Views/ChooserDialog.axaml +++ b/src/Views/ChooserDialog.axaml @@ -4,8 +4,8 @@ x:Class="Fido.Views.ChooserDialog" x:DataType="vm:ChooserViewModel" Title="Select" - Width="660" Height="460" - MinWidth="480" MinHeight="280" + Width="660" Height="600" + MinWidth="480" MinHeight="360" WindowStartupLocation="CenterOwner" Icon="/Assets/fido-icon-256.png" FontFamily="{DynamicResource FidoMono}" diff --git a/src/Views/MainWindow.axaml b/src/Views/MainWindow.axaml index 5234a2f..9a727ed 100644 --- a/src/Views/MainWindow.axaml +++ b/src/Views/MainWindow.axaml @@ -4,8 +4,8 @@ xmlns:sys="using:System" x:Class="Fido.Views.MainWindow" x:DataType="vm:MainWindowViewModel" - Width="600" Height="780" - MinWidth="520" MinHeight="560" + Width="660" Height="780" + MinWidth="560" MinHeight="560" WindowStartupLocation="CenterScreen" Icon="/Assets/fido-icon-256.png" Title="Fido"