QmlDesigner: Fix splash screen check box color

Task-number: QDS-4934
Change-Id: Ia92675d7c83eb5a94892714fd7889f85182d2e13
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Henning Gruendl
2021-08-24 11:29:56 +02:00
committed by Henning Gründl
parent d1d5f47bda
commit 88ee84c5b1
@@ -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
}
}
}