Add spacing between codec and preset controls

This commit is contained in:
Stu Leak 2026-01-04 05:23:23 -05:00
parent 162233fb0b
commit 8022bf7154

View File

@ -8886,7 +8886,11 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject {
videoCodecLabel := widget.NewLabelWithStyle("Video Codec", fyne.TextAlignLeading, fyne.TextStyle{Bold: true})
presetLabel := widget.NewLabelWithStyle("Encoder Preset (speed vs quality)", fyne.TextAlignLeading, fyne.TextStyle{Bold: true})
videoCodecRow := ui.NewRatioRow(videoCodecLabel, presetLabel, 0.3)
videoCodecControls := ui.NewRatioRow(videoCodecContainer, encoderPresetSelect, 0.3)
videoCodecControls := ui.NewRatioRow(
container.NewPadded(videoCodecContainer),
container.NewPadded(encoderPresetSelect),
0.3,
)
advancedVideoEncodingBlock = container.NewVBox(
widget.NewLabelWithStyle("═══ VIDEO ENCODING ═══", fyne.TextAlignCenter, fyne.TextStyle{Bold: true}),