Browse Source

Add border around the checked radio button in the intents and infill

CURA-8202
Konstantinos Karmas 3 years ago
parent
commit
b1ff639fc4

+ 2 - 0
resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml

@@ -120,6 +120,8 @@ Item
                     implicitWidth: UM.Theme.getSize("print_setup_slider_handle").width
                     implicitWidth: UM.Theme.getSize("print_setup_slider_handle").width
                     implicitHeight: implicitWidth
                     implicitHeight: implicitWidth
                     radius: Math.round(implicitWidth / 2)
                     radius: Math.round(implicitWidth / 2)
+                    border.color: defaultItemColor
+                    border.width: UM.Theme.getSize("default_lining").height
                 }
                 }
 
 
                 tickmarks: Repeater
                 tickmarks: Repeater

+ 1 - 0
resources/qml/RadioCheckbar.qml

@@ -146,6 +146,7 @@ Item
                     }
                     }
                     radius: Math.round(width / 2)
                     radius: Math.round(width / 2)
                     color: activeColor
                     color: activeColor
+                    border.color: defaultItemColor
                     visible: checkbox.checked
                     visible: checkbox.checked
                 }
                 }
             }
             }