File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -372,9 +372,9 @@ func (app *App) handleReauthentication(ctx context.Context) {
372372 }
373373
374374 // Update tooltip
375- tooltip := "Goose - Loading PRs... "
375+ tooltip := "Review Goose "
376376 if app .targetUser != "" {
377- tooltip = fmt .Sprintf ("Goose - Loading PRs... (@%s)" , app .targetUser )
377+ tooltip = fmt .Sprintf ("Review Goose (@%s)" , app .targetUser )
378378 }
379379 systray .SetTooltip (tooltip )
380380
@@ -479,9 +479,9 @@ func (app *App) onReady(ctx context.Context) {
479479 app .setTrayIcon (IconSmiling , PRCounts {}) // Start with smiling icon while loading
480480
481481 // Set tooltip based on whether we're using a custom user
482- tooltip := "Goose - Loading PRs... "
482+ tooltip := "Review Goose "
483483 if app .targetUser != "" {
484- tooltip = fmt .Sprintf ("Goose - Loading PRs... (@%s)" , app .targetUser )
484+ tooltip = fmt .Sprintf ("Review Goose (@%s)" , app .targetUser )
485485 }
486486 systray .SetTooltip (tooltip )
487487
Original file line number Diff line number Diff line change @@ -263,6 +263,13 @@ func (app *App) setTrayTitle() {
263263 "outgoing_blocked" , counts .OutgoingBlocked )
264264 app .systrayInterface .SetTitle (title )
265265 app .setTrayIcon (iconType , counts )
266+
267+ // Update tooltip to match current state
268+ tooltip := "Review Goose"
269+ if app .targetUser != "" {
270+ tooltip = fmt .Sprintf ("Review Goose (@%s)" , app .targetUser )
271+ }
272+ systray .SetTooltip (tooltip )
266273}
267274
268275// addPRSection adds a section of PRs to the menu.
You can’t perform that action at this time.
0 commit comments