mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Fix Qt runtime warning "QTimeLine::start: already running".
svn path=/trunk/KDE/kdebase/apps/; revision=1198200
This commit is contained in:
parent
a6fee698f6
commit
308855320a
1 changed files with 3 additions and 0 deletions
|
@ -91,6 +91,9 @@ void KTreeView::KTreeViewPrivate::startScrolling()
|
|||
|
||||
if (scrollBarPos != oldScrollBarPos) {
|
||||
timeLine->setFrameRange(oldScrollBarPos, scrollBarPos);
|
||||
if (timeLine->state() == QTimeLine::Running) {
|
||||
timeLine->stop();
|
||||
}
|
||||
timeLine->start();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue