┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinviewcontainer.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2012-01-30 16:36:40 +0100
committerPeter Penz <[email protected]>2012-01-30 16:38:11 +0100
commit60bd873e9f42d22f2d4dae8d1ed43ebbc23c600f (patch)
tree74355713af87d639b498292b712088b96ce1c272 /src/dolphinviewcontainer.cpp
parent670655f448b25a53f075ed1e61e64ab85deaee12 (diff)
Synchronize view-mode settings before the settings dialog gets opened
BUG: 292698 FIXED-IN: 4.8.1
Diffstat (limited to 'src/dolphinviewcontainer.cpp')
-rw-r--r--src/dolphinviewcontainer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphinviewcontainer.cpp b/src/dolphinviewcontainer.cpp
index 72c943eb4..2d2e20ff6 100644
--- a/src/dolphinviewcontainer.cpp
+++ b/src/dolphinviewcontainer.cpp
@@ -211,7 +211,7 @@ DolphinSearchBox* DolphinViewContainer::searchBox()
return m_searchBox;
}
-void DolphinViewContainer::refresh()
+void DolphinViewContainer::readSettings()
{
if (GeneralSettings::modifiedStartupSettings()) {
// The startup settings should only get applied if they have been
@@ -222,8 +222,8 @@ void DolphinViewContainer::refresh()
setFilterBarVisible(GeneralSettings::filterBar());
}
- m_view->refresh();
- m_statusBar->refresh();
+ m_view->readSettings();
+ m_statusBar->readSettings();
}
bool DolphinViewContainer::isFilterBarVisible() const