┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2008-02-11 21:09:07 +0000
committerPeter Penz <[email protected]>2008-02-11 21:09:07 +0000
commit538192b8bdbc59f76cbe0092894e1c985b942f7f (patch)
tree00dd1a0dcfa6f5f6ff5f25a99ef688e0c5f960a8 /src
parentd432679df0c7a4bcba210fed69df0699c1de12c0 (diff)
fix a flickering of the horizontal scrollbar when decreasing the width inside the details view
CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=773821
Diffstat (limited to 'src')
-rw-r--r--src/dolphindetailsview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphindetailsview.cpp b/src/dolphindetailsview.cpp
index 3be22fb42..43d74db14 100644
--- a/src/dolphindetailsview.cpp
+++ b/src/dolphindetailsview.cpp
@@ -358,10 +358,10 @@ void DolphinDetailsView::keyPressEvent(QKeyEvent* event)
void DolphinDetailsView::resizeEvent(QResizeEvent* event)
{
- QTreeView::resizeEvent(event);
if (m_autoResize) {
resizeColumns();
}
+ QTreeView::resizeEvent(event);
}
void DolphinDetailsView::setSortIndicatorSection(DolphinView::Sorting sorting)