diff options
| author | Peter Penz <[email protected]> | 2012-01-30 16:36:40 +0100 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2012-01-30 16:38:24 +0100 |
| commit | e283a9f7d9cd0e77c159316e4f98108b28f917ce (patch) | |
| tree | 2d3abb9df4d031236f401f039a8348beb1a679d4 /src/dolphinviewcontainer.cpp | |
| parent | 6c39b4622f6d9920e5f8905a1d26da4a2b11b234 (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.cpp | 6 |
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 |
