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.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Stu Leak 2025-12-30 22:15:17 -05:00
parent f8a9844b53
commit 879bec4309

View File

@ -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)
}