diff options
Diffstat (limited to 'components/controls/StyledRadioButton.qml')
| -rw-r--r-- | components/controls/StyledRadioButton.qml | 2 |
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 { |