diff --git a/app/qml/BooksPageSlider.qml b/app/qml/BooksPageSlider.qml index e3b06e9..a18f4e6 100644 --- a/app/qml/BooksPageSlider.qml +++ b/app/qml/BooksPageSlider.qml @@ -204,7 +204,10 @@ MouseArea { color: slider.highlighted ? highlightColor : primaryColor Behavior on width { enabled: !_widthChanged - SmoothedAnimation { velocity: 1500 } + SmoothedAnimation { + velocity: 1500 + duration: 500 + } } } @@ -235,7 +238,10 @@ MouseArea { color: slider.highlighted ? highlightColor : primaryColor Behavior on x { enabled: !_widthChanged - SmoothedAnimation { velocity: 1500 } + SmoothedAnimation { + velocity: 1500 + duration: 500 + } } }