From 0f50577d7839811bb31cdc765b679c5622e66d4a Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Mon, 2 Feb 2026 18:21:28 -0500 Subject: [PATCH] Fix scrollbar animations. --- qml/ClideEditor.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qml/ClideEditor.qml b/qml/ClideEditor.qml index bb64b26..204df3f 100644 --- a/qml/ClideEditor.qml +++ b/qml/ClideEditor.qml @@ -187,7 +187,7 @@ SplitView { implicitWidth: scrollBar.interactive ? 8 : 4 // Fade the scrollbar gutter when inactive. - opacity: scrollBar.active && scrollBar.size < 1.0 ? 1.0 : 0.2 + opacity: scrollBar.active && scrollBar.size < 1.0 ? 1.0 : 0.0 Behavior on opacity { OpacityAnimator { @@ -205,7 +205,7 @@ SplitView { implicitHeight: scrollBar.interactive ? 8 : 4 implicitWidth: scrollBar.interactive ? 8 : 4 // Fade the scrollbar when inactive. - opacity: scrollBar.active && scrollBar.size < 1.0 ? 1.0 : 0.35 + opacity: scrollBar.active && scrollBar.size < 1.0 ? 1.0 : 0 // Smooth transition between color changes based on the state above. Behavior on color { @@ -215,7 +215,7 @@ SplitView { } Behavior on opacity { OpacityAnimator { - duration: 500 + duration: 1000 } } }