mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 20:15:35 +00:00
Disable Activate key when textinput is active (Bug #4151)
This commit is contained in:
parent
a5adc5b018
commit
f1aeb416ec
1 changed files with 4 additions and 1 deletions
|
@ -1113,7 +1113,10 @@ namespace MWInput
|
|||
void InputManager::activate()
|
||||
{
|
||||
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"])
|
||||
mPlayer->activate();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue