diff options
| author | Peter Penz <[email protected]> | 2007-05-26 13:33:36 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-05-26 13:33:36 +0000 |
| commit | 9801eddcdc065300a97a3b35dfafe2399a29f729 (patch) | |
| tree | 45b2f9ed659c5d7b07c0d6f571ef490db0621917 /src/dolphinmainwindow.cpp | |
| parent | 3ac27c04e7fc102624358c10dd1dd87c7980b9b0 (diff) | |
reanimate properties dialog (thanks to Laurent Montel for fixing it in the tree view!)
svn path=/trunk/KDE/kdebase/apps/; revision=668453
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 2f24f746e..cdb3f3cbc 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -458,7 +458,9 @@ void DolphinMainWindow::deleteItems() void DolphinMainWindow::properties() { const KFileItemList list = m_activeView->selectedItems(); - new KPropertiesDialog(list, this); + KPropertiesDialog* dlg = new KPropertiesDialog(list, this); + dlg->exec(); + delete dlg; } void DolphinMainWindow::quit() |
