diff options
| author | Peter Penz <[email protected]> | 2009-01-09 22:56:24 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2009-01-09 22:56:24 +0000 |
| commit | e931b21216d015c6fcfb988ec46d1242362dab31 (patch) | |
| tree | 528acf92b5d003128c575fc55c213e81dc194d1f /src | |
| parent | 723db9be8353787a54a0927adad4a29c793a49f9 (diff) | |
there is no reason that the settings dialog is modal...
BUG: 179757
svn path=/trunk/KDE/kdebase/apps/; revision=908577
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 22d2f09fc..1bf0cfd10 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -701,8 +701,11 @@ void DolphinMainWindow::toggleShowMenuBar() void DolphinMainWindow::editSettings() { - DolphinSettingsDialog dialog(this); - dialog.exec(); + DolphinSettingsDialog* dialog = new DolphinSettingsDialog(this); + dialog->setAttribute(Qt::WA_DeleteOnClose); + dialog->show(); + dialog->raise(); + dialog->activateWindow(); } void DolphinMainWindow::setActiveTab(int index) |
