┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphindetailsview.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-09-26 18:53:34 +0000
committerPeter Penz <[email protected]>2007-09-26 18:53:34 +0000
commit093efca22dfd247f06e2a669ad968300e71ef08d (patch)
tree3cc8043ec02095a666704729a7e13cde4e485631 /src/dolphindetailsview.cpp
parentd4a9bc6a3f6102efc53133d68ed47fcc565ddbb3 (diff)
reactivate ScrollPerPixel again, as the Qt-patch for "divide by zero" has been applied to qt-copy now
svn path=/trunk/KDE/kdebase/apps/; revision=717366
Diffstat (limited to 'src/dolphindetailsview.cpp')
-rw-r--r--src/dolphindetailsview.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/dolphindetailsview.cpp b/src/dolphindetailsview.cpp
index b15de900b..39783c9a9 100644
--- a/src/dolphindetailsview.cpp
+++ b/src/dolphindetailsview.cpp
@@ -52,11 +52,8 @@ DolphinDetailsView::DolphinDetailsView(QWidget* parent, DolphinController* contr
setDragDropMode(QAbstractItemView::DragDrop);
setDropIndicatorShown(false);
setAlternatingRowColors(true);
- // 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);
+ setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel);
+ setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
setMouseTracking(true);
viewport()->setAttribute(Qt::WA_Hover);