From 529da986450fff895540cd24d141bcf368c4d87c Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Sun, 10 Apr 2011 19:21:54 +0200 Subject: [PATCH] Column View: Keep wheel-behavior consistent with other views Using the wheel in the column view resulted in too big jumps. Keep it consistent with the details view and icons view. BUG: 269942 FIXED-IN: 4.7.0 --- src/views/dolphincolumnview.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/dolphincolumnview.cpp b/src/views/dolphincolumnview.cpp index 8f97875ae..fa1f620e4 100644 --- a/src/views/dolphincolumnview.cpp +++ b/src/views/dolphincolumnview.cpp @@ -82,6 +82,7 @@ DolphinColumnView::DolphinColumnView(QWidget* parent, setItemsExpandable(false); setEditTriggers(QAbstractItemView::NoEditTriggers); setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn); + setVerticalScrollMode(QTreeView::ScrollPerPixel); m_resizeWidget = new QLabel(this); m_resizeWidget->setPixmap(KIcon("transform-move").pixmap(KIconLoader::SizeSmall)); -- 2.47.3