Remove unsupported entry min size calls
This commit is contained in:
parent
e884d57fc3
commit
238cfba73f
2
main.go
2
main.go
|
|
@ -7204,7 +7204,6 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject {
|
||||||
|
|
||||||
outputEntry := widget.NewEntry()
|
outputEntry := widget.NewEntry()
|
||||||
outputEntry.SetText(state.convert.OutputBase)
|
outputEntry.SetText(state.convert.OutputBase)
|
||||||
outputEntry.SetMinSize(fyne.NewSize(0, 36))
|
|
||||||
var updatingOutput bool
|
var updatingOutput bool
|
||||||
var autoNameCheck *widget.Check
|
var autoNameCheck *widget.Check
|
||||||
outputEntry.OnChanged = func(val string) {
|
outputEntry.OnChanged = func(val string) {
|
||||||
|
|
@ -7224,7 +7223,6 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject {
|
||||||
outputDirEntry := widget.NewEntry()
|
outputDirEntry := widget.NewEntry()
|
||||||
outputDirEntry.SetPlaceHolder("Output folder path")
|
outputDirEntry.SetPlaceHolder("Output folder path")
|
||||||
outputDirEntry.SetText(state.convert.OutputDir)
|
outputDirEntry.SetText(state.convert.OutputDir)
|
||||||
outputDirEntry.SetMinSize(fyne.NewSize(0, 36))
|
|
||||||
outputDirEntry.OnChanged = func(val string) {
|
outputDirEntry.OnChanged = func(val string) {
|
||||||
state.convert.OutputDir = val
|
state.convert.OutputDir = val
|
||||||
updateOutputHint()
|
updateOutputHint()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user