┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2008-12-12 06:39:23 +0000
committerPeter Penz <[email protected]>2008-12-12 06:39:23 +0000
commitabce76721daaf6b785048a1fb9abd622236edd74 (patch)
treea43a591e8661bc30ba1281d5ffc0f0b5904f5a01
parentb60da9b67acbfe94e43bd631e4e685f366d53ec5 (diff)
Exchange the order of the zoom slider and the capacity bar. Thanks to Frederik Schwarzer for the patch!
BUG: 177563 svn path=/trunk/KDE/kdebase/apps/; revision=895974
-rw-r--r--src/dolphinstatusbar.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dolphinstatusbar.cpp b/src/dolphinstatusbar.cpp
index 22b8a9ed7..821c2998d 100644
--- a/src/dolphinstatusbar.cpp
+++ b/src/dolphinstatusbar.cpp
@@ -59,10 +59,6 @@ DolphinStatusBar::DolphinStatusBar(QWidget* parent, DolphinView* view) :
// initialize message label
m_messageLabel = new StatusBarMessageLabel(this);
m_messageLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
-
- // initialize space information
- m_spaceInfo = new StatusBarSpaceInfo(this);
- m_spaceInfo->setUrl(m_view->url());
// initialize zoom slider
m_zoomWidget = new QWidget(this);
@@ -95,7 +91,11 @@ DolphinStatusBar::DolphinStatusBar(QWidget* parent, DolphinView* view) :
connect(m_view, SIGNAL(zoomLevelChanged(int)), m_zoomSlider, SLOT(setValue(int)));
connect(m_zoomOut, SIGNAL(clicked()), this, SLOT(zoomOut()));
connect(m_zoomIn, SIGNAL(clicked()), this, SLOT(zoomIn()));
-
+
+ // initialize space information
+ m_spaceInfo = new StatusBarSpaceInfo(this);
+ m_spaceInfo->setUrl(m_view->url());
+
// initialize progress information
m_progressText = new QLabel(this);
m_progressText->hide();