From a361a1deed4df24c0c7e41ad9b79625573e411cc Mon Sep 17 00:00:00 2001 From: spycrab Date: Mon, 4 Sep 2017 19:50:24 +0200 Subject: [PATCH] Qt/SettingsWindow: Fix window not being detected as a dialog by some window managers --- Source/Core/DolphinQt2/Config/Graphics/GraphicsWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/Config/Graphics/GraphicsWindow.cpp b/Source/Core/DolphinQt2/Config/Graphics/GraphicsWindow.cpp index 2ada29ac81..7aca3d3087 100644 --- a/Source/Core/DolphinQt2/Config/Graphics/GraphicsWindow.cpp +++ b/Source/Core/DolphinQt2/Config/Graphics/GraphicsWindow.cpp @@ -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));