fix(ui): Enable text wrapping in metadata panel

Enabled word wrapping for all value labels in the metadata panel
to prevent text cutoff. Long filenames and metadata values will
now wrap to multiple lines instead of being truncated.
This commit is contained in:
Stu Leak 2025-12-31 14:09:29 -05:00
parent cac747f5c2
commit d0a35cdcb2

View File

@ -9197,7 +9197,7 @@ Metadata: %s`,
keyLabel := widget.NewLabel(key + ":")
keyLabel.TextStyle = fyne.TextStyle{Bold: true}
valueLabel := widget.NewLabel(value)
// Don't wrap - let text flow naturally
valueLabel.Wrapping = fyne.TextWrapWord
return container.NewHBox(keyLabel, valueLabel)
}