Fix reset tabs scope in convert view
This commit is contained in:
parent
640380db13
commit
c36cb29af7
1
DONE.md
1
DONE.md
|
|
@ -820,6 +820,7 @@ This file tracks completed features, fixes, and milestones.
|
||||||
- ✅ Added unit selector for manual video bitrate entry
|
- ✅ Added unit selector for manual video bitrate entry
|
||||||
- ✅ Reset now restores full default convert settings even with no config file
|
- ✅ Reset now restores full default convert settings even with no config file
|
||||||
- ✅ Reset now forces resolution and frame rate back to Source
|
- ✅ Reset now forces resolution and frame rate back to Source
|
||||||
|
- ✅ Fixed reset handler scope for convert tabs
|
||||||
- ✅ Stabilized video seeking and embedded rendering
|
- ✅ Stabilized video seeking and embedded rendering
|
||||||
- ✅ Improved player window positioning
|
- ✅ Improved player window positioning
|
||||||
- ✅ Fixed clear video functionality
|
- ✅ Fixed clear video functionality
|
||||||
|
|
|
||||||
1
TODO.md
1
TODO.md
|
|
@ -53,6 +53,7 @@ This file tracks upcoming features, improvements, and known issues.
|
||||||
- Manual video bitrate uses a unit selector (KB/MB/GB)
|
- Manual video bitrate uses a unit selector (KB/MB/GB)
|
||||||
- Reset restores full default convert settings
|
- Reset restores full default convert settings
|
||||||
- Reset forces resolution/frame rate back to Source
|
- Reset forces resolution/frame rate back to Source
|
||||||
|
- Reset handler scope fixed for convert tabs
|
||||||
|
|
||||||
## Priority Features for dev20+
|
## Priority Features for dev20+
|
||||||
|
|
||||||
|
|
|
||||||
3
main.go
3
main.go
|
|
@ -5283,6 +5283,7 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject {
|
||||||
bitrateContainer *fyne.Container
|
bitrateContainer *fyne.Container
|
||||||
targetSizeContainer *fyne.Container
|
targetSizeContainer *fyne.Container
|
||||||
resetConvertDefaults func()
|
resetConvertDefaults func()
|
||||||
|
tabs *container.AppTabs
|
||||||
)
|
)
|
||||||
var (
|
var (
|
||||||
updateEncodingControls func()
|
updateEncodingControls func()
|
||||||
|
|
@ -6910,7 +6911,7 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject {
|
||||||
updateQualityVisibility()
|
updateQualityVisibility()
|
||||||
}
|
}
|
||||||
|
|
||||||
tabs := container.NewAppTabs(
|
tabs = container.NewAppTabs(
|
||||||
container.NewTabItem("Simple", simpleScrollBox),
|
container.NewTabItem("Simple", simpleScrollBox),
|
||||||
container.NewTabItem("Advanced", advancedScrollBox),
|
container.NewTabItem("Advanced", advancedScrollBox),
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user