From 2f47271acec9e016e710eaf1e86dfdcf1b057b2e Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Mon, 1 Aug 2011 23:16:26 +0100 Subject: [PATCH] Fix Configure Pane 'on top' obscuring other windows Notably when you select a color in the config appearances the dialog will have modal focus but be hidden behind the config pane, this is tedious as hell. I have now checked across the codebase and there are no dialogs which insist on being on top so the OS window manager and user is now free to manage windows as they see fit. Although not directly related this fixes the only possible problems with window focus that could be related to another bug reported by Fernando. Fixes #117. --- src/ConfigDialog.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ConfigDialog.cpp b/src/ConfigDialog.cpp index cc6798c5d..70ac7ef0e 100644 --- a/src/ConfigDialog.cpp +++ b/src/ConfigDialog.cpp @@ -26,7 +26,6 @@ ConfigDialog::ConfigDialog(QDir _home, Zones *_zones, MainWindow *mainWindow) : mainWindow(mainWindow), zones(_zones) { setAttribute(Qt::WA_DeleteOnClose); - setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint); home = _home;