forked from mirror/openmw-tes3mp
Merge remote-tracking branch 'scrawl/consolefix' into next
This commit is contained in:
commit
90e679746b
1 changed files with 7 additions and 0 deletions
|
@ -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…
Reference in a new issue