1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:19:56 +00:00

Fix exiting savegamedialog with 'esc' when no game is running

This commit is contained in:
scrawl 2017-10-05 18:35:09 +02:00
parent d94235e3a7
commit cd437f094d
4 changed files with 10 additions and 5 deletions

View file

@ -210,6 +210,11 @@ namespace MWGui
}
}
bool MainMenu::exit()
{
return MWBase::Environment::get().getStateManager()->getState() == MWBase::StateManager::State_Running;
}
void MainMenu::updateMenu()
{
setCoord(0,0, mWidth, mHeight);

View file

@ -38,6 +38,8 @@ namespace MWGui
void onFrame(float dt);
bool exit();
private:
const VFS::Manager* mVFS;

View file

@ -750,8 +750,8 @@ namespace MWGui
if (!window->exit())
{
// unable to exit window, but give access to main menu
if (!MyGUI::InputManager::getInstance().isModalAny())
pushGuiMode (MWGui::GM_MainMenu);
if (!MyGUI::InputManager::getInstance().isModalAny() && getMode() != GM_MainMenu)
pushGuiMode (GM_MainMenu);
return;
}
}

View file

@ -241,8 +241,6 @@ namespace MWInput
switch (action)
{
case A_GameMenu:
if(!(MWBase::Environment::get().getStateManager()->getState() != MWBase::StateManager::State_Running
&& MWBase::Environment::get().getWindowManager()->getMode() == MWGui::GM_MainMenu))
toggleMainMenu ();
break;
case A_Screenshot: