From 538192b8bdbc59f76cbe0092894e1c985b942f7f Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Mon, 11 Feb 2008 21:09:07 +0000 Subject: [PATCH] fix a flickering of the horizontal scrollbar when decreasing the width inside the details view CCMAIL: hein@kde.org svn path=/trunk/KDE/kdebase/apps/; revision=773821 --- src/dolphindetailsview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dolphindetailsview.cpp b/src/dolphindetailsview.cpp index 3be22fb426..43d74db140 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)