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:
parent
f8a9844b53
commit
879bec4309
2
main.go
2
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)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user