Menu shortcut char greyed out
Posted: Mon Jul 21, 2025 9:57 pm
I just noticed that all my menu short cut characters are greyed out. They still work but all are greyed out. I ran this example from Help and had the same result. Am I doing something wrong or is this a bug (new feature)?
Code: Select all
If OpenWindow(0, 200, 200, 200, 100, "MenuItem Example")
If CreateMenu(0, WindowID(0))
MenuTitle("Project")
MenuItem(1, "Open"+Chr(9)+"O") ; I get a grey 'O'
MenuItem(2, "&Save") ; I just get 'Save' (no underline or arrow)
MenuItem(3, "Quit"+Chr(9)+"Esc") ; I get 'Quit E' with the E greyed
EndIf
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf