mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
make enter key toggle Option Search mode too
This commit is contained in:
parent
7973ab9c6b
commit
1f011cda7f
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ class os_AnyOrAllOption : OptionMenuItemOption
|
|||
{
|
||||
bool result = Super.MenuEvent(mkey, fromcontroller);
|
||||
|
||||
if (mKey == Menu.MKEY_Left || mKey == Menu.MKEY_Right)
|
||||
if (mKey == Menu.MKEY_Left || mKey == Menu.MKEY_Right || mkey == Menu.MKEY_Enter)
|
||||
{
|
||||
mMenu.search();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue