mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-10 21:40:15 +00:00
don't allow opening a window multiple times, primarily the console
This commit is contained in:
parent
2be60041f3
commit
3d7146cd50
@ -772,6 +772,13 @@ void WindowManager::pushGuiMode(GuiMode mode)
|
||||
if (mode==GM_Inventory && mAllowed==GW_None)
|
||||
return;
|
||||
|
||||
|
||||
// If this mode already exists somewhere in the stack, just bring it to the front.
|
||||
if (std::find(mGuiModes.begin(), mGuiModes.end(), mode) != mGuiModes.end())
|
||||
{
|
||||
mGuiModes.erase(std::find(mGuiModes.begin(), mGuiModes.end(), mode));
|
||||
}
|
||||
|
||||
mGuiModes.push_back(mode);
|
||||
|
||||
bool gameMode = !isGuiMode();
|
||||
|
Loading…
x
Reference in New Issue
Block a user