From 26827d5ccdd14e6edd37a0934d126d97d3731f26 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Sat, 14 Jun 2025 22:46:00 +0500 Subject: [PATCH] Window title updated to "GUI for FFmpeg". --- internal/controller/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/controller/main.go b/internal/controller/main.go index 8d75dc9..e6f0e75 100644 --- a/internal/controller/main.go +++ b/internal/controller/main.go @@ -19,7 +19,7 @@ type controller struct { } func NewController(app application.AppContract) ControllerContract { - fyneWindow := app.FyneApp().NewWindow(app.FyneApp().Metadata().Name) + fyneWindow := app.FyneApp().NewWindow("GUI for FFmpeg") fyneWindow.SetMaster() queueLayout := window.NewQueueLayout(app.GetFFmpegService()) app.GetQueueService().AddListener(queueLayout)