From 8295b9dffd71e859f3738a8b58e0d1c1fea7b9d9 Mon Sep 17 00:00:00 2001 From: Sander Ferdinand Date: Wed, 6 Dec 2017 22:54:55 +0100 Subject: [PATCH] Checkbox QML development --- components/CheckBox.qml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/CheckBox.qml b/components/CheckBox.qml index 0ae8cb04..5e7066b1 100644 --- a/components/CheckBox.qml +++ b/components/CheckBox.qml @@ -52,9 +52,10 @@ RowLayout { anchors.left: parent.left width: 25 * scaleRatio height: checkBox.height - 1 - //radius: 4 + radius: 3 y: 0 - color: "#DBDBDB" + color: "transparent" + border.color: Qt.rgba(1, 1, 1, 0.25) } Rectangle { @@ -64,7 +65,7 @@ RowLayout { height: checkBox.height - 1 //radius: 4 y: 1 - color: "#FFFFFF" + color: "transparent" Image { anchors.centerIn: parent