Skip to content

Commit f194878

Browse files
committed
Update autostart menu item titles for macOS to remove checkbox symbols, enhancing visual clarity and consistency.
1 parent 763a250 commit f194878

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/tray/tray.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ func (a *App) onReady() {
326326

327327
// --- Autostart Menu Item (macOS only) ---
328328
if runtime.GOOS == osDarwin && a.autostartManager != nil {
329-
a.autostartItem = systray.AddMenuItem("Start at Login", "Start mcpproxy automatically when you log in")
329+
a.autostartItem = systray.AddMenuItem("Start at Login", "Start mcpproxy automatically when you log in")
330330
a.updateAutostartMenuItem()
331331
systray.AddSeparator()
332332
}
@@ -1040,7 +1040,7 @@ func (a *App) updateAutostartMenuItem() {
10401040
a.autostartItem.SetTitle("☑️ Start at Login")
10411041
a.autostartItem.SetTooltip("mcpproxy will start automatically when you log in (click to disable)")
10421042
} else {
1043-
a.autostartItem.SetTitle("Start at Login")
1043+
a.autostartItem.SetTitle("Start at Login")
10441044
a.autostartItem.SetTooltip("Start mcpproxy automatically when you log in (click to enable)")
10451045
}
10461046
}

0 commit comments

Comments
 (0)