From aa391ed60d4445643e6a50f97f72e9fdd49a3759 Mon Sep 17 00:00:00 2001 From: James Rowe Date: Mon, 9 Apr 2018 09:49:51 -0600 Subject: [PATCH] Fixed and issue where multiplayer state was covering the File and Emulation menu items when it shouldn't even be visible --- src/citra_qt/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index b80775962..41528718b 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -173,6 +173,7 @@ void GMainWindow::InitializeWidgets() { ui.horizontalLayout->addWidget(game_list); multiplayer_state = new MultiplayerState(this, game_list->GetModel()); + multiplayer_state->setVisible(false); // Setup updater updater = new Updater(this);