From 7252d3683c5380eb369e8dc5e38e03d7f8e710d2 Mon Sep 17 00:00:00 2001 From: mixeme Date: Tue, 16 Jun 2026 07:45:17 +0300 Subject: [PATCH] Clean up Settings application block Remove the duplicated application version row from the Settings Application block now that version details live in About. Keep the autostart control inline and shorten its checkbox text to Start on login. --- src/gui/app.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/gui/app.go b/src/gui/app.go index a6c98ef..7ec9fad 100644 --- a/src/gui/app.go +++ b/src/gui/app.go @@ -733,7 +733,7 @@ func logFileName(path string) string { } func settingsView(w fyne.Window, store *core.Store, jobs *[]job) fyne.CanvasObject { - startOnLogin := widget.NewCheck("Start PySentry when I sign in", nil) + startOnLogin := widget.NewCheck("Start on login", nil) startOnLogin.SetChecked(store.Config.StartOnLogin) autostartStatus := widget.NewLabel("") refreshAutostartStatus := func() { @@ -826,8 +826,7 @@ func settingsView(w fyne.Window, store *core.Store, jobs *[]job) fyne.CanvasObje return container.NewPadded(container.NewVBox( widget.NewLabelWithStyle("Application", fyne.TextAlignLeading, fyne.TextStyle{Bold: true}), - detailRow("Version", widget.NewLabel(core.Version)), - detailRow("Start on login", container.NewBorder(nil, nil, nil, autostartStatus, startOnLogin)), + container.NewBorder(nil, nil, nil, autostartStatus, startOnLogin), minimizeToTray, notifications, widget.NewSeparator(),