From 64decc73453b9cb2b53355014b347287a9664c92 Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Mon, 9 Dec 2019 14:24:27 +0100 Subject: [PATCH] Change unselected intent to outline (dark theme) The unselected intent radio buttons in the default profiles are by default white-filled. This is fixed to have a white outline and be filled with the main background's color. CURA-6941 --- resources/qml/RadioCheckbar.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/qml/RadioCheckbar.qml b/resources/qml/RadioCheckbar.qml index dfd9ca8628..96afe5bb3c 100644 --- a/resources/qml/RadioCheckbar.qml +++ b/resources/qml/RadioCheckbar.qml @@ -14,6 +14,7 @@ Item property color activeColor: UM.Theme.getColor("primary") property color inactiveColor: UM.Theme.getColor("slider_groove") property color defaultItemColor: UM.Theme.getColor("small_button_active") + property color defaultItemFillColor: UM.Theme.getColor("main_background") property int checkboxSize: Math.round(UM.Theme.getSize("radio_button").height * 0.75) property int inactiveMarkerSize: 2 * barSize property int barSize: UM.Theme.getSize("slider_groove_radius").height @@ -135,6 +136,7 @@ Item radius: Math.round(width / 2) border.color: defaultItemColor + color: defaultItemFillColor Rectangle {