From: Peter Penz Date: Tue, 6 May 2008 22:25:15 +0000 (+0000) Subject: Fixed issue that the vertical scrollbar jumps back to the initial state during previe... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/90e8b435e7ce00175beceabb881dccb8a5088627?ds=inline Fixed issue that the vertical scrollbar jumps back to the initial state during previews are loaded in the icons view. BUG: 161086 BUG: 160513 svn path=/trunk/KDE/kdebase/apps/; revision=804790 --- diff --git a/src/dolphiniconsview.cpp b/src/dolphiniconsview.cpp index 2e6d7dca6..f763c5476 100644 --- a/src/dolphiniconsview.cpp +++ b/src/dolphiniconsview.cpp @@ -135,6 +135,16 @@ DolphinIconsView::~DolphinIconsView() m_categoryDrawer = 0; } +void DolphinIconsView::scrollTo(const QModelIndex& index, ScrollHint hint) +{ + Q_UNUSED(index); + Q_UNUSED(hint); + // Disable the QListView implementation of scrollTo(), as QAbstractItemView + // wants to scroll to the current index each time the layout has been changed. + // This becomes an issue when previews are loaded and the scrollbar is used: the + // scrollbar will always be reset to 0 on each new preview. +} + void DolphinIconsView::dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight) { KCategorizedView::dataChanged(topLeft, bottomRight); diff --git a/src/dolphiniconsview.h b/src/dolphiniconsview.h index 7ada661a4..a05d7ae27 100644 --- a/src/dolphiniconsview.h +++ b/src/dolphiniconsview.h @@ -48,6 +48,7 @@ class LIBDOLPHINPRIVATE_EXPORT DolphinIconsView : public KCategorizedView public: explicit DolphinIconsView(QWidget* parent, DolphinController* controller); virtual ~DolphinIconsView(); + virtual void scrollTo(const QModelIndex& index, ScrollHint hint = EnsureVisible); protected slots: virtual void dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight);