summaryrefslogtreecommitdiffstats
path: root/framework
diff options
context:
space:
mode:
Diffstat (limited to 'framework')
-rw-r--r--framework/qml/CheckBox.qml5
1 files changed, 1 insertions, 4 deletions
diff --git a/framework/qml/CheckBox.qml b/framework/qml/CheckBox.qml
index acd16783..ca76c06d 100644
--- a/framework/qml/CheckBox.qml
+++ b/framework/qml/CheckBox.qml
@@ -31,18 +31,15 @@ T.CheckBox {
31 height: Kube.Units.gridUnit 31 height: Kube.Units.gridUnit
32 32
33 color: Kube.Colors.viewBackgroundColor 33 color: Kube.Colors.viewBackgroundColor
34
35 border.width: 1 34 border.width: 1
36 border.color: Kube.Colors.buttonColor 35 border.color: Kube.Colors.buttonColor
37 36
38 Kube.Icon { 37 Kube.Icon {
39 anchors.centerIn: parent 38 anchors.centerIn: parent
40
41 visible: root.checked
42
43 height: Kube.Units.gridUnit 39 height: Kube.Units.gridUnit
44 width: Kube.Units.gridUnit 40 width: Kube.Units.gridUnit
45 41
42 visible: root.checked
46 iconName: Kube.Icons.checkbox 43 iconName: Kube.Icons.checkbox
47 } 44 }
48 } 45 }