Improve keyboard shortcut handling in menus
This commit is contained in:
parent
8f3fab4bf5
commit
cf9bac4809
|
@ -219,10 +219,12 @@ void FMenuItem::onKeyPress (FKeyEvent* ev)
|
|||
if ( isMenuBar(super_menu) )
|
||||
{
|
||||
FMenuBar* mbar = dynamic_cast<FMenuBar*>(super_menu);
|
||||
if ( mbar->hotkeyMenu(ev) )
|
||||
return;
|
||||
if ( mbar )
|
||||
{
|
||||
if ( mbar->hotkeyMenu(ev) )
|
||||
return;
|
||||
mbar->onKeyPress(ev);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue