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
Menu separator not visible with light theme (windows, linux).
Start application and activate menu.
OK:
NOK:
package main
import ( "fyne.io/fyne/v2" "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/widget" )
func main() { application := app.New() wMain := application.NewWindow("Menu Separator") wMain.Resize(fyne.NewSize(400, 400)) hello := widget.NewLabel("Menu separators not shown under Windows.") wMain.SetContent(hello)
generalHelp := fyne.NewMenuItem("General", func() {}) problemHelp := fyne.NewMenuItem("Problem", func() {}) versionHelp := fyne.NewMenuItem("Version", func() {}) helpMenu := fyne.NewMenu("Help", generalHelp, fyne.NewMenuItemSeparator(), problemHelp, fyne.NewMenuItemSeparator(), versionHelp) mainMenu := fyne.NewMainMenu(helpMenu) wMain.SetMainMenu(mainMenu) wMain.ShowAndRun()
}
fyne version v2.3.3
go version go1.20.3 darwin/arm64
Windows 10 Pro (20H2)
No response
The text was updated successfully, but these errors were encountered:
Make light theme separator visible in menu
f2a05ec
Fixes fyne-io#3814
Fixed on release branch for v2.3.5 :)
Sorry, something went wrong.
No branches or pull requests
Checklist
Describe the bug
Menu separator not visible with light theme (windows, linux).
How to reproduce
Start application and activate menu.
Screenshots
OK:
NOK:
Example code
package main
import (
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/widget"
)
func main() {
application := app.New()
wMain := application.NewWindow("Menu Separator")
wMain.Resize(fyne.NewSize(400, 400))
hello := widget.NewLabel("Menu separators not shown under Windows.")
wMain.SetContent(hello)
}
Fyne version
fyne version v2.3.3
Go compiler version
go version go1.20.3 darwin/arm64
Operating system and version
Windows 10 Pro (20H2)
Additional Information
No response
The text was updated successfully, but these errors were encountered: