From 879bec43094eae596c635f3b090a805eb931647c 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- 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) }