From 88ee84c5b16a86dff4f46faecf6e51411fe65055 Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Tue, 24 Aug 2021 11:29:56 +0200 Subject: QmlDesigner: Fix splash screen check box color Task-number: QDS-4934 Change-Id: Ia92675d7c83eb5a94892714fd7889f85182d2e13 Reviewed-by: Thomas Hartmann --- .../studiowelcome/qml/splashscreen/Welcome_splash.qml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml b/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml index 860e7b0f56..e7ef726611 100644 --- a/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml +++ b/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml @@ -235,6 +235,13 @@ Rectangle { id: doNotShowCheckBox text: qsTr("Do not show this again") padding: 0 + spacing: 12 + + contentItem: Text { + text: doNotShowCheckBox.text + color: "#ffffff" + leftPadding: doNotShowCheckBox.indicator.width + doNotShowCheckBox.spacing + } } CheckBox { @@ -242,8 +249,15 @@ Rectangle { text: qsTr("Enable Usage Statistics") checked: usageStatisticModel.usageStatisticEnabled padding: 0 + spacing: 12 onCheckedChanged: usageStatisticModel.setTelemetryEnabled(usageStatisticCheckBox.checked) + + contentItem: Text { + text: usageStatisticCheckBox.text + color: "#ffffff" + leftPadding: usageStatisticCheckBox.indicator.width + usageStatisticCheckBox.spacing + } } } -- cgit v1.2.3