diff --git a/main.go b/main.go index 8a9a124..dd96e01 100644 --- a/main.go +++ b/main.go @@ -1673,7 +1673,7 @@ func runGUI() { // Initialize UI colors ui.SetColors(gridColor, textColor) - a := app.NewWithID("com.leaktechnologies.videotools") + a := app.NewWithID("com.leaktechnologies.vtplayer") // Always start with a clean slate: wipe any persisted app storage (queue or otherwise) if root := a.Storage().RootURI(); root != nil && root.Scheme() == "file" { @@ -1682,7 +1682,7 @@ func runGUI() { a.Settings().SetTheme(&ui.MonoTheme{}) logging.Debug(logging.CatUI, "created fyne app: %#v", a) - w := a.NewWindow("VideoTools") + w := a.NewWindow("VT Player") if icon := utils.LoadAppIcon(); icon != nil { a.SetIcon(icon) w.SetIcon(icon)