aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Gruendl <henning.gruendl@qt.io>2021-08-24 11:29:56 +0200
committerHenning Gründl <henning.gruendl@qt.io>2021-08-24 17:57:23 +0000
commit88ee84c5b16a86dff4f46faecf6e51411fe65055 (patch)
treeedd5ef5002000912d203bbb2cfd962f2bbf52798
parentd1d5f47bda6a1435499be8516a7491e11b145ffc (diff)
QmlDesigner: Fix splash screen check box color
Task-number: QDS-4934 Change-Id: Ia92675d7c83eb5a94892714fd7889f85182d2e13 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml14
1 files changed, 14 insertions, 0 deletions
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
+ }
}
}