From 52e11da6ea367b4d616a4497f34831f323bebbb6 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Tue, 30 Dec 2025 22:15:17 -0500 Subject: [PATCH] fix(ui): Fix vertical text in metadata panel Removed TextWrapWord setting from metadata value labels that was causing text to wrap character-by-character in constrained space, making the filename and other metadata appear vertically. Text now flows naturally without wrapping, fixing the display issue shown in the screenshot. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index d0b0c40..cd9b592 100644 --- a/main.go +++ b/main.go @@ -9149,7 +9149,7 @@ Metadata: %s`, keyLabel := widget.NewLabel(key + ":") keyLabel.TextStyle = fyne.TextStyle{Bold: true} valueLabel := widget.NewLabel(value) - valueLabel.Wrapping = fyne.TextWrapWord + // Don't wrap - let text flow naturally return container.NewHBox(keyLabel, valueLabel) }