┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Peilicke <[email protected]>2008-08-14 10:12:32 +0000
committerSascha Peilicke <[email protected]>2008-08-14 10:12:32 +0000
commit817f3952e2bed820ea3b50dfdfe91ccb99dcb748 (patch)
tree534480b449b3d5a33c1744e8fb0ad529cbc152b4
parentf9ae8a50b2f9511de3b5f44673822003b52869b6 (diff)
Fix for show_filter_bar action of tools-menu, which is not correctly set (when the corresponding option is checked in the startupsettingsview) at application start-up.
svn path=/trunk/KDE/kdebase/apps/; revision=846896
-rw-r--r--src/dolphinmainwindow.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 8604b0876..75d0a059f 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -855,6 +855,9 @@ void DolphinMainWindow::init()
}
updateViewActions();
+ QAction* showFilterBarAction = actionCollection()->action("show_filter_bar");
+ showFilterBarAction->setChecked(generalSettings->filterBar());
+
if (firstRun) {
// assure a proper default size if Dolphin runs the first time
resize(750, 500);