From: Peter Penz Date: Wed, 26 Sep 2007 06:08:51 +0000 (+0000) Subject: temporary disable the ScrollPerPixel feature until a Qt-patch is supplied which fixes... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/c364f1b47ab4a3f95d246cc433fad6a68939312a temporary disable the ScrollPerPixel feature until a Qt-patch is supplied which fixes a possible crash (see http://lists.kde.org/?l=kde-core-devel&m=119077433611662&w=2) svn path=/trunk/KDE/kdebase/apps/; revision=717132 --- diff --git a/src/dolphindetailsview.cpp b/src/dolphindetailsview.cpp index 8ffa65e8f..07a203751 100644 --- a/src/dolphindetailsview.cpp +++ b/src/dolphindetailsview.cpp @@ -52,8 +52,11 @@ DolphinDetailsView::DolphinDetailsView(QWidget* parent, DolphinController* contr setDragDropMode(QAbstractItemView::DragDrop); setDropIndicatorShown(false); setAlternatingRowColors(true); - setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); - setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); + // TODO: enable ScrollPerPixel again as soon as a Qt-patch + // is supplied which fixes a possible crash + // (see http://lists.kde.org/?l=kde-core-devel&m=119077433611662&w=2) + //setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); + //setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); setMouseTracking(true); viewport()->setAttribute(Qt::WA_Hover); diff --git a/src/sidebartreeview.cpp b/src/sidebartreeview.cpp index caf1314c6..4d8c2cc56 100644 --- a/src/sidebartreeview.cpp +++ b/src/sidebartreeview.cpp @@ -40,8 +40,11 @@ SidebarTreeView::SidebarTreeView(QWidget* parent) : setDragDropMode(QAbstractItemView::DragDrop); setDropIndicatorShown(false); setAutoExpandDelay(300); - setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); - setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); + // TODO: enable ScrollPerPixel again as soon as a Qt-patch + // is supplied which fixes a possible crash + // (see http://lists.kde.org/?l=kde-core-devel&m=119077433611662&w=2) + //setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); + //setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); viewport()->setAttribute(Qt::WA_Hover);