diff --git a/resources/qml/RadioCheckbar.qml b/resources/qml/RadioCheckbar.qml index 2d863f7a66..645b24e560 100644 --- a/resources/qml/RadioCheckbar.qml +++ b/resources/qml/RadioCheckbar.qml @@ -69,6 +69,8 @@ Item { id: activeComponent sourceComponent: isEnabled? checkboxComponent : disabledComponent + // Ensure the inactive markers that are not the first / last one align with the center of the checkboxes + x: isEnabled && index !== 0 && index + 1 !== repeater.count ? -(checkboxSize - inactiveMarkerSize) / 2: 0 } } }