From 73797dc0932d8baacc9e748d32a81021316f6ac9 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 26 Jun 2026 10:04:24 +0000 Subject: [PATCH] Fix flight log overlapping GO banner and countdown bar (#17) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The main window used a DockPanel with the flight log as LastChildFill, plus a fixed MinHeight=190 on the log border. After a launch — when the GO status banner, secondary editor buttons, and the close countdown are all visible — the leftover middle strip shrinks below 190px, so the DockPanel forced the log to render at its minimum and it overflowed both upward (over the GO banner) and downward (over the "Closing… / Keep open" bar), obscuring them. Replace the DockPanel with a Grid (RowDefinitions="Auto,*,Auto"): top controls size to content, the flight log takes the slack via the star row, and the countdown pins to the bottom. Drop the rigid MinHeight so the log shrinks gracefully (its ScrollViewer keeps it usable) instead of overlapping its neighbours when space is tight. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01QoHkEWzYULxqMC3Tmeh5DL --- src/Views/MainWindow.axaml | 42 ++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/src/Views/MainWindow.axaml b/src/Views/MainWindow.axaml index 213c85a..5234a2f 100644 --- a/src/Views/MainWindow.axaml +++ b/src/Views/MainWindow.axaml @@ -12,9 +12,11 @@ FontFamily="{DynamicResource FidoMono}" Background="{DynamicResource FidoWindowBg}"> - + + - + @@ -147,30 +149,15 @@ - - - - - -