mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Fix overlap if first option is radioButton
CURA-6598
This commit is contained in:
parent
abc6e5950b
commit
cc4dc6a27c
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ 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
|
||||
x: !isEnabled && index !== 0 && index + 1 !== repeater.count ? (checkboxSize - inactiveMarkerSize) / 2: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue