mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
Add missing icon and crash report setting
This commit is contained in:
parent
87157a6b70
commit
62bac1b255
BIN
assets/icons/icon_cake.afdesign
Normal file
BIN
assets/icons/icon_cake.afdesign
Normal file
Binary file not shown.
@ -55,7 +55,7 @@ Item {
|
||||
|
||||
Item {
|
||||
id: settingsGeneralWrapper
|
||||
height: 320
|
||||
height: 390
|
||||
width: parent.width
|
||||
|
||||
RectangularGlow {
|
||||
@ -113,6 +113,7 @@ Item {
|
||||
SettingBool {
|
||||
headline: qsTr("High priority Autostart")
|
||||
available: false
|
||||
|
||||
description: qsTr("This options grants ScreenPlay a higher autostart priority than other apps.")
|
||||
isChecked: screenPlaySettings.highPriorityStart
|
||||
onCheckboxChanged: {
|
||||
@ -138,6 +139,17 @@ Item {
|
||||
}
|
||||
}
|
||||
}
|
||||
SettingsHorizontalSeperator {
|
||||
}
|
||||
SettingBool {
|
||||
headline: qsTr("Send anonymous crash reports and statistics")
|
||||
description: qsTr("Help us make ScreenPlay faster and more stable. All collected data is purely used for development purposes!")
|
||||
isChecked: screenPlaySettings.sendStatistics
|
||||
onCheckboxChanged: {
|
||||
screenPlaySettings.setSendStatistics(checked)
|
||||
screenPlaySettings.writeSingleSettingConfig("sendStatistics",checked)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
"version" : "0.0.1",
|
||||
"autostart" : true,
|
||||
"highPriorityStart" : false,
|
||||
"sendStatistics" : false,
|
||||
"sendStatistics" : true,
|
||||
"absoluteStoragePath": "",
|
||||
"renderer": {
|
||||
"renderer-value": 0,
|
||||
|
Loading…
Reference in New Issue
Block a user