From 9d30eac13aefe8d813288d16d292343771eca540 Mon Sep 17 00:00:00 2001 From: Corey Woodworth Date: Fri, 26 Sep 2025 16:01:25 -0400 Subject: [PATCH] Fix: Correct same issue with Radio Buttons too. --- Widgets/NRadioButton.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Widgets/NRadioButton.qml b/Widgets/NRadioButton.qml index 9c44f133..7f7e296f 100644 --- a/Widgets/NRadioButton.qml +++ b/Widgets/NRadioButton.qml @@ -19,9 +19,8 @@ RadioButton { anchors.verticalCenter: parent.verticalCenter Rectangle { - anchors.centerIn: parent - implicitWidth: Style.marginS * scaling - implicitHeight: Style.marginS * scaling + anchors.fill: parent + anchors.margins: parent.width * 0.3 radius: width * 0.5 color: Qt.alpha(Color.mPrimary, root.checked ? 1 : 0)