diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-27 14:54:27 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-27 14:54:27 +0200 |
commit | 4c38cb8d10c2925387fdedf816fe7493652ee69a (patch) | |
tree | b88490a0bce87676d1110d267b97e0e33afdc5af /framework/qml/CheckBox.qml | |
parent | 04458495ac32a86b8856b6a5b6e3da37bfff820f (diff) | |
download | kube-4c38cb8d10c2925387fdedf816fe7493652ee69a.tar.gz kube-4c38cb8d10c2925387fdedf816fe7493652ee69a.zip |
less whitespace
Diffstat (limited to 'framework/qml/CheckBox.qml')
-rw-r--r-- | framework/qml/CheckBox.qml | 5 |
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 | } |