Skip to content

Commit

Permalink
Merge pull request #6022 from spycrab/qt_sw_dialog
Browse files Browse the repository at this point in the history
Qt/SettingsWindow: Fix window not being detected as a dialog
  • Loading branch information
lioncash committed Sep 4, 2017
2 parents 018ad98 + a361a1d commit 3e47baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt2/Config/Graphics/GraphicsWindow.cpp
Expand Up @@ -26,7 +26,7 @@ GraphicsWindow::GraphicsWindow(X11Utils::XRRConfiguration* xrr_config, MainWindo
ConnectWidgets();

setWindowTitle(tr("Graphics"));
setWindowFlags(Qt::Window);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);

OnBackendChanged(QString::fromStdString(SConfig::GetInstance().m_strVideoBackend));

Expand Down

0 comments on commit 3e47baa

Please sign in to comment.