┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/dolphinview.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2010-09-04 15:31:01 +0000
committerPeter Penz <[email protected]>2010-09-04 15:31:01 +0000
commitbfdc7b4fa21a08a821cbd5d873798d16c6025809 (patch)
tree8d99a3b7263223ff76f17577569ce79594ce9ea0 /src/views/dolphinview.cpp
parentd78c7bffb1445554a44cf3dd3c8e3559e7376f96 (diff)
Never ignore the view-properties if "Use common view properties for all folders" has been set, otherwise the view-properties switch when searching files won't work. Originally this flag has been introduced when working with a split view, however I consider the behavior to always respect the view-properties when changing a folder more consistent anyway.
svn path=/trunk/KDE/kdebase/apps/; revision=1171589
Diffstat (limited to 'src/views/dolphinview.cpp')
-rw-r--r--src/views/dolphinview.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp
index 00751bf77..d4f489615 100644
--- a/src/views/dolphinview.cpp
+++ b/src/views/dolphinview.cpp
@@ -86,7 +86,6 @@ DolphinView::DolphinView(QWidget* parent,
m_storedCategorizedSorting(false),
m_tabsForFiles(false),
m_isContextMenuOpen(false),
- m_ignoreViewProperties(false),
m_assureVisibleCurrentIndex(false),
m_mode(DolphinView::IconsView),
m_topLayout(0),
@@ -440,8 +439,6 @@ void DolphinView::reload()
void DolphinView::refresh()
{
- m_ignoreViewProperties = false;
-
const bool oldActivationState = m_active;
const int oldZoomLevel = m_viewModeController->zoomLevel();
m_active = true;
@@ -1192,10 +1189,6 @@ void DolphinView::loadDirectory(const KUrl& url, bool reload)
void DolphinView::applyViewProperties()
{
- if (m_ignoreViewProperties) {
- return;
- }
-
const ViewProperties props(rootUrl());
const Mode mode = props.viewMode();
@@ -1262,13 +1255,6 @@ void DolphinView::applyViewProperties()
// the used zoom level of the controller must be adjusted manually:
updateZoomLevel(oldZoomLevel);
}
-
- if (DolphinSettings::instance().generalSettings()->globalViewProps()) {
- // During the lifetime of a DolphinView instance the global view properties
- // should not be changed. This allows e. g. to split a view and use different
- // view properties for each view.
- m_ignoreViewProperties = true;
- }
}
void DolphinView::createView()