mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-09 21:44:54 +00:00
Disable Activate key when textinput is active (Bug #4151)
This commit is contained in:
parent
a5adc5b018
commit
f1aeb416ec
@ -1113,7 +1113,10 @@ namespace MWInput
|
|||||||
void InputManager::activate()
|
void InputManager::activate()
|
||||||
{
|
{
|
||||||
if (MWBase::Environment::get().getWindowManager()->isGuiMode())
|
if (MWBase::Environment::get().getWindowManager()->isGuiMode())
|
||||||
MWBase::Environment::get().getWindowManager()->injectKeyPress(MyGUI::KeyCode::Return, 0);
|
{
|
||||||
|
if (!SDL_IsTextInputActive())
|
||||||
|
MWBase::Environment::get().getWindowManager()->injectKeyPress(MyGUI::KeyCode::Return, 0);
|
||||||
|
}
|
||||||
else if (mControlSwitch["playercontrols"])
|
else if (mControlSwitch["playercontrols"])
|
||||||
mPlayer->activate();
|
mPlayer->activate();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user