summaryrefslogtreecommitdiff
path: root/components/controls
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-15 21:22:14 -0500
committerATMDA <atdma2600@gmail.com>2025-11-15 21:22:14 -0500
commit90bda07a9031f88ff6d7df52ac39a09feba98a6d (patch)
tree9ca3a26b2e85af5f56d8691542c68bb3b0dc5256 /components/controls
parentcontrolcenter: slider component color fix for transparency layers (diff)
downloadcaelestia-shell-90bda07a9031f88ff6d7df52ac39a09feba98a6d.tar.gz
caelestia-shell-90bda07a9031f88ff6d7df52ac39a09feba98a6d.tar.bz2
caelestia-shell-90bda07a9031f88ff6d7df52ac39a09feba98a6d.zip
controlcenter: animation bug fix on flickables
Diffstat (limited to 'components/controls')
-rw-r--r--components/controls/CollapsibleSection.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/components/controls/CollapsibleSection.qml b/components/controls/CollapsibleSection.qml
index 3fba1c3..600b662 100644
--- a/components/controls/CollapsibleSection.qml
+++ b/components/controls/CollapsibleSection.qml
@@ -104,6 +104,13 @@ ColumnLayout {
anchors.topMargin: Appearance.spacing.small
anchors.bottomMargin: Appearance.spacing.small
spacing: Appearance.spacing.small
+ opacity: root.expanded ? 1.0 : 0.0
+
+ Behavior on opacity {
+ Anim {
+ easing.bezierCurve: Appearance.anim.curves.standard
+ }
+ }
}
}
}