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.
This commit is contained in:
parent
d29f485106
commit
52e11da6ea
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