Skip to content

Commit

Permalink
Fix scrollbar easing
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrell committed Feb 19, 2024
1 parent c382a49 commit 152049e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/controls/ScrollBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ CT.ScrollBar {
// QTBUG-70470: Use ScrollBar.AsNeeded policy once it works
enabled: parent.contentHeight > parent.height
opacity: enabled ? 1.0 : 0.0
Behavior on opacity { OpacityAnimator { duration: Theme.animation_scrollbar_fade_duration; easing: Easing.InOutQuad } }
Behavior on opacity { OpacityAnimator { duration: Theme.animation_scrollbar_fade_duration; easing.type: Easing.InOutQuad } }

background: Item {
implicitWidth: Theme.geometry_scrollBar_bar_width
Expand Down

0 comments on commit 152049e

Please sign in to comment.