summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-15 22:36:48 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-15 22:36:48 +1000
commit484027202e73fc06729aa54cfb2119fb9d5bcf5a (patch)
tree8215eb7b2ee0a3cd8dce8b41624367889901cacc /components
parentinternal: remove workaround for hyprland bug (diff)
downloadcaelestia-shell-484027202e73fc06729aa54cfb2119fb9d5bcf5a.tar.gz
caelestia-shell-484027202e73fc06729aa54cfb2119fb9d5bcf5a.tar.bz2
caelestia-shell-484027202e73fc06729aa54cfb2119fb9d5bcf5a.zip
utilities/toggles: convert to row of icon buttons
Diffstat (limited to 'components')
-rw-r--r--components/controls/IconButton.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/components/controls/IconButton.qml b/components/controls/IconButton.qml
index 6e55064..36f8e38 100644
--- a/components/controls/IconButton.qml
+++ b/components/controls/IconButton.qml
@@ -21,6 +21,7 @@ StyledRect {
property alias stateLayer: stateLayer
property alias label: label
+ property alias radiusAnim: radiusAnim
property bool internalChecked
property color activeColour: type === IconButton.Filled ? Colours.palette.m3primary : Colours.palette.m3secondary
@@ -71,6 +72,8 @@ StyledRect {
}
Behavior on radius {
- Anim {}
+ Anim {
+ id: radiusAnim
+ }
}
}