FullscreenUI: Prevent quick menu opening over other windows
This commit is contained in:
parent
521ade025c
commit
767343ca22
|
@ -253,7 +253,7 @@ void SystemPaused(bool paused)
|
||||||
|
|
||||||
void OpenQuickMenu()
|
void OpenQuickMenu()
|
||||||
{
|
{
|
||||||
if (!System::IsValid())
|
if (!System::IsValid() || s_current_main_window != MainWindowType::None)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
s_was_paused_on_quick_menu_open = System::IsPaused();
|
s_was_paused_on_quick_menu_open = System::IsPaused();
|
||||||
|
|
Loading…
Reference in New Issue