gui #17

Merged
shaunrd0 merged 41 commits from gui into main 2026-02-08 21:25:05 +00:00
Showing only changes of commit 0f50577d78 - Show all commits

View File

@@ -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
}
}
}