]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/klistview.cpp
Fix the scrollbar issue. We can live with the setSingleStep nasty workaround for...
[dolphin.git] / src / klistview.cpp
index 7e4259be66ee8be48c937db245187249a9c17cc0..553c4e400c3e31f99e3474f6115c869b4ebadb2d 100644 (file)
@@ -386,6 +386,9 @@ void KListView::Private::updateScrollbars()
 {
     int lastItemBottom = cachedRectIndex(lastIndex).bottom() +
                            listView->spacing() - listView->viewport()->height();
+
+    listView->verticalScrollBar()->setSingleStep(listView->viewport()->height() / 10);
+    listView->verticalScrollBar()->setPageStep(listView->viewport()->height());
     listView->verticalScrollBar()->setRange(0, lastItemBottom);
 }