From d7e3be861f25b66b425587880171b4a7f7fd7eba Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 7 Aug 2025 17:05:45 +1000 Subject: internal: fix transparent transitions --- components/controls/StyledRadioButton.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/controls') 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 { -- cgit v1.2.3-freya