From 5f36c7a0e141ee8797212364e3510599664576f2 Mon Sep 17 00:00:00 2001 From: mixeme Date: Thu, 25 Jun 2026 22:30:30 +0300 Subject: [PATCH] feat(ui): rename pause/resume all to Disable/Enable auto with pause icon Co-Authored-By: Claude Sonnet 4.6 --- src/ui/jobs_view.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ui/jobs_view.go b/src/ui/jobs_view.go index a272c6e..c8cd941 100644 --- a/src/ui/jobs_view.go +++ b/src/ui/jobs_view.go @@ -202,9 +202,9 @@ func newJobsView(w fyne.Window, svc *app.Service) (fyne.CanvasObject, func()) { refreshView() }) - stopAllText, stopAllIcon := "Pause all", theme.MediaStopIcon() + stopAllText, stopAllIcon := "Disable auto", theme.MediaPauseIcon() if schedulerPaused { - stopAllText, stopAllIcon = "Resume all", theme.MediaPlayIcon() + stopAllText, stopAllIcon = "Enable auto", theme.MediaPlayIcon() } schedulerStateText := "Scheduler running" if schedulerPaused { @@ -223,12 +223,12 @@ func newJobsView(w fyne.Window, svc *app.Service) (fyne.CanvasObject, func()) { } if schedulerPaused { schedulerState.SetText("Scheduler paused") - stopAllButton.SetText("Resume all") + stopAllButton.SetText("Enable auto") stopAllButton.SetIcon(theme.MediaPlayIcon()) } else { schedulerState.SetText("Scheduler running") - stopAllButton.SetText("Pause all") - stopAllButton.SetIcon(theme.MediaStopIcon()) + stopAllButton.SetText("Disable auto") + stopAllButton.SetIcon(theme.MediaPauseIcon()) } list.Refresh() refreshView()