mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 23:53:52 +00:00
Fix quick keys being triggered when in UI mode
This commit is contained in:
parent
867c7db014
commit
5ff098b8fb
1 changed files with 2 additions and 1 deletions
|
@ -679,7 +679,8 @@ namespace MWInput
|
||||||
|
|
||||||
void InputManager::quickKey (int index)
|
void InputManager::quickKey (int index)
|
||||||
{
|
{
|
||||||
mWindows.activateQuickKey (index);
|
if (!mWindows.isGuiMode())
|
||||||
|
mWindows.activateQuickKey (index);
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputManager::showQuickKeysMenu()
|
void InputManager::showQuickKeysMenu()
|
||||||
|
|
Loading…
Reference in a new issue