From: Peter Penz Date: Mon, 11 Feb 2008 21:09:07 +0000 (+0000) Subject: fix a flickering of the horizontal scrollbar when decreasing the width inside the... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/538192b8bdbc59f76cbe0092894e1c985b942f7f 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 --- 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)