Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Nov 23, 2023
1 parent c1d2101 commit 3df0aca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/driver/glfw/driver_desktop.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ func (d *gLDriver) SetSystemTrayMenu(m *fyne.Menu) {
if title == "" {
title = app.UniqueID()
}
systray.SetTitle(title)
if runtime.GOOS != "darwin" {
systray.SetTitle(title)
}

// it must be refreshed after init, so an earlier call would have been ineffective
d.refreshSystray(m)
Expand Down

0 comments on commit 3df0aca

Please sign in to comment.