mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
Merge pull request #2077 from terabyte25/patch-14
Sanity check for text input in toggleWalking
This commit is contained in:
commit
708a4f85ce
@ -1173,7 +1173,7 @@ namespace MWInput
|
||||
|
||||
void InputManager::toggleWalking()
|
||||
{
|
||||
if (MWBase::Environment::get().getWindowManager()->isGuiMode()) return;
|
||||
if (MWBase::Environment::get().getWindowManager()->isGuiMode() || SDL_IsTextInputActive()) return;
|
||||
mAlwaysRunActive = !mAlwaysRunActive;
|
||||
|
||||
Settings::Manager::setBool("always run", "Input", mAlwaysRunActive);
|
||||
|
Loading…
x
Reference in New Issue
Block a user