We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After upgrading from version 2.3.1 to 2.3.1 all but the first MenuItem separators are gone. Even the one before the Quit item.
Quit
No response
app := app.New() systrayMenu := fyne.NewMenu("Test", &fyne.MenuItem{Label: "Click"}) if desk, ok := app.(desktop.App); ok { desk.SetSystemTrayMenu(systrayMenu) } systrayMenu.Items = append(systrayMenu.Items, fyne.NewMenuItemSeparator(), &fyne.MenuItem{Label: "a"}, &fyne.MenuItem{Label: "b"}, fyne.NewMenuItemSeparator(), &fyne.MenuItem{Label: "c"}) app.Run() }
2.3.2
1.20
macOS Ventura
The text was updated successfully, but these errors were encountered:
Update systray to fix root submenus on darwin
6ef9f2d
Fixes #3759
b12a7ac
Apologies for this, updating systray to include the fix in fyne-io/systray#42 has resolved this on develop and the release branch.
develop
Sorry, something went wrong.
No branches or pull requests
Checklist
Describe the bug
After upgrading from version 2.3.1 to 2.3.1 all but the first MenuItem separators are gone.
Even the one before the
Quit
item.How to reproduce
Screenshots
No response
Example code
Fyne version
2.3.2
Go compiler version
1.20
Operating system and version
macOS Ventura
Additional Information
No response
The text was updated successfully, but these errors were encountered: