mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 16:39:57 +00:00
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.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user