From afa6d6061710f1c4bd64f1a859ff3635c80eaa0c Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sun, 4 Jan 2026 06:13:51 -0500 Subject: [PATCH] Remove unsupported entry min size calls --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index 73e0fcc..f6e8588 100644 --- a/main.go +++ b/main.go @@ -7204,7 +7204,6 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject { outputEntry := widget.NewEntry() outputEntry.SetText(state.convert.OutputBase) - outputEntry.SetMinSize(fyne.NewSize(0, 36)) var updatingOutput bool var autoNameCheck *widget.Check outputEntry.OnChanged = func(val string) { @@ -7224,7 +7223,6 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject { outputDirEntry := widget.NewEntry() outputDirEntry.SetPlaceHolder("Output folder path") outputDirEntry.SetText(state.convert.OutputDir) - outputDirEntry.SetMinSize(fyne.NewSize(0, 36)) outputDirEntry.OnChanged = func(val string) { state.convert.OutputDir = val updateOutputHint()