From 8403c991e96eb8209d66f4094aa90e1496791d55 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Wed, 31 Dec 2025 13:50:29 -0500 Subject: [PATCH] fix(ui): Improve metadata panel column spacing Changed from HBox with spacer to GridWithColumns for better column alignment. This prevents the right column (Video Codec, etc.) from being pushed too far to the right edge. --- main.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 3714346..a62e2a7 100644 --- a/main.go +++ b/main.go @@ -9230,9 +9230,8 @@ Metadata: %s`, makeRow("Metadata", metadata), ) - // Add spacing between the two columns - spacer := layout.NewSpacer() - twoColGrid := container.NewHBox(col1, spacer, col2) + // Two-column grid with proper spacing + twoColGrid := container.NewGridWithColumns(2, col1, col2) // Combine filename row with two-column grid info := container.NewVBox(fileRow, twoColGrid)