summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-16 10:56:57 -0500
committerATMDA <atdma2600@gmail.com>2025-11-16 10:56:57 -0500
commitd184f8d673a4b3c92a7ea396082b031d283bd4c5 (patch)
tree9e4c93373d45dafa4947a19e20039ae92e153246 /modules
parentcontrolcenter: changed to popout vs floating to match the other settings butt... (diff)
downloadcaelestia-shell-d184f8d673a4b3c92a7ea396082b031d283bd4c5.tar.gz
caelestia-shell-d184f8d673a4b3c92a7ea396082b031d283bd4c5.tar.bz2
caelestia-shell-d184f8d673a4b3c92a7ea396082b031d283bd4c5.zip
controlcenter: re-corrected bind loop
Diffstat (limited to 'modules')
-rw-r--r--modules/dashboard/Content.qml11
1 files changed, 8 insertions, 3 deletions
diff --git a/modules/dashboard/Content.qml b/modules/dashboard/Content.qml
index 8a9ed5f..707bee3 100644
--- a/modules/dashboard/Content.qml
+++ b/modules/dashboard/Content.qml
@@ -87,6 +87,7 @@ Item {
id: row
Pane {
+ index: 0
sourceComponent: Dash {
visibilities: root.visibilities
state: root.state
@@ -95,12 +96,14 @@ Item {
}
Pane {
+ index: 1
sourceComponent: Media {
visibilities: root.visibilities
}
}
Pane {
+ index: 2
sourceComponent: Performance {}
}
}
@@ -126,12 +129,14 @@ Item {
}
component Pane: Loader {
+ required property int index
+
Layout.alignment: Qt.AlignTop
Component.onCompleted: active = Qt.binding(() => {
- const vx = Math.floor(view.visibleArea.xPosition * view.contentWidth);
- const vex = Math.floor(vx + view.visibleArea.widthRatio * view.contentWidth);
- return (vx >= x && vx <= x + implicitWidth) || (vex >= x && vex <= x + implicitWidth);
+ const current = view.currentIndex;
+ // Activate current pane and adjacent panes for smooth scrolling
+ return Math.abs(index - current) <= 1;
})
}
}