From 3bf3490aa37115e611e1edb273088a150b388da4 Mon Sep 17 00:00:00 2001 From: fourtf Date: Fri, 5 Jan 2018 23:32:06 +0100 Subject: [PATCH] increased speed of smooth scrolling --- src/widgets/scrollbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/scrollbar.cpp b/src/widgets/scrollbar.cpp index e8cd9d8c3..fd0d50b8e 100644 --- a/src/widgets/scrollbar.cpp +++ b/src/widgets/scrollbar.cpp @@ -20,7 +20,7 @@ ScrollBar::ScrollBar(ChannelView *parent) , smoothScrollingSetting(singletons::SettingManager::getInstance().enableSmoothScrolling) { resize((int)(16 * this->getDpiMultiplier()), 100); - this->currentValueAnimation.setDuration(250); + this->currentValueAnimation.setDuration(150); this->currentValueAnimation.setEasingCurve(QEasingCurve(QEasingCurve::OutCubic)); setMouseTracking(true);