mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-06 06:45:35 +00:00
FIX(windowmanagerimp): Don't remove a ui mode twice
This commit is contained in:
parent
6b762a5328
commit
2ea9d6ba20
1 changed files with 6 additions and 3 deletions
|
@ -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())
|
||||
|
|
Loading…
Reference in a new issue