Remove unsupported entry min size calls

This commit is contained in:
Stu Leak 2026-01-04 06:13:51 -05:00
parent cd873b2e3c
commit afa6d60617

View File

@ -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()