1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-24 00:39:49 +00:00

Merge branch 'actually-you-have-to-sleep' into 'master'

FIX(windowmanagerimp): Don't remove a ui mode twice (Close #8156)

Closes #8156

See merge request OpenMW/openmw!4369
This commit is contained in:
Evil Eye 2024-09-13 07:17:49 +00:00
commit dac6779aaf

View File

@ -1323,9 +1323,12 @@ namespace MWGui
window->exit();
}
mKeyboardNavigation->saveFocus(mode);
mGuiModes.pop_back();
mGuiModeStates[mode].update(false);
MWBase::Environment::get().getLuaManager()->uiModeChanged(MWWorld::Ptr());
if (containsMode(mode))
{
mGuiModes.pop_back();
mGuiModeStates[mode].update(false);
MWBase::Environment::get().getLuaManager()->uiModeChanged(MWWorld::Ptr());
}
}
if (!mGuiModes.empty())