aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml')
-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
+ }
}
}