From 8022bf7154176a365644a8d5edbbde7366f4bfac Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sun, 4 Jan 2026 05:23:23 -0500 Subject: [PATCH] Add spacing between codec and preset controls --- main.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 338cca9..edd9a64 100644 --- a/main.go +++ b/main.go @@ -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}),