summaryrefslogtreecommitdiff
path: root/components/controls/StyledRadioButton.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-07 17:05:45 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-07 17:05:45 +1000
commitd7e3be861f25b66b425587880171b4a7f7fd7eba (patch)
tree25bb8957b9689350aee3bbef5928fb1935c2f673 /components/controls/StyledRadioButton.qml
parentcontrolcenter: add header when floating (diff)
downloadcaelestia-shell-d7e3be861f25b66b425587880171b4a7f7fd7eba.tar.gz
caelestia-shell-d7e3be861f25b66b425587880171b4a7f7fd7eba.tar.bz2
caelestia-shell-d7e3be861f25b66b425587880171b4a7f7fd7eba.zip
internal: fix transparent transitions
Diffstat (limited to 'components/controls/StyledRadioButton.qml')
-rw-r--r--components/controls/StyledRadioButton.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/controls/StyledRadioButton.qml b/components/controls/StyledRadioButton.qml
index 73fc836..7a44baa 100644
--- a/components/controls/StyledRadioButton.qml
+++ b/components/controls/StyledRadioButton.qml
@@ -36,7 +36,7 @@ RadioButton {
implicitHeight: 8
radius: Appearance.rounding.full
- color: root.checked ? Colours.palette.m3primary : "transparent"
+ color: Qt.alpha(Colours.palette.m3primary, root.checked ? 1 : 0)
}
Behavior on border.color {