From f5d78cc2181792ccb8d0ff8f454a2f9ca6552e1e Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Tue, 23 Dec 2025 17:24:50 -0500 Subject: [PATCH] Wire author module navigation --- main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 50a32a7..b2812d8 100644 --- a/main.go +++ b/main.go @@ -2241,6 +2241,8 @@ func (s *appState) showModule(id string) { s.showFiltersView() case "upscale": s.showUpscaleView() + case "author": + s.showAuthorView() case "mainmenu": s.showMainMenu() default: @@ -8779,7 +8781,7 @@ func buildVideoPane(state *appState, min fyne.Size, src *videoSource, onCover fu container.NewHBox(prevFrameBtn, playBtn, nextFrameBtn, fullBtn, coverBtn, saveFrameBtn, importBtn, layout.NewSpacer(), frameLabel, volBox), progress, ) - } else{ + } else { slider := widget.NewSlider(0, math.Max(1, float64(len(src.PreviewFrames)-1))) slider.Step = 1 slider.OnChanged = func(val float64) {