Added option to disable pre launch warning and delay

This commit is contained in:
Odizinne
2025-04-21 22:56:09 +02:00
committed by Cameron Gutman
parent 11dc244857
commit 65c04fd560
4 changed files with 35 additions and 16 deletions
+11
View File
@@ -1236,6 +1236,17 @@ Flickable {
}
}
CheckBox {
id: configurationWarningsCheck
width: parent.width
text: qsTr("Show configuration warnings")
font.pointSize: 12
checked: StreamingPreferences.configurationWarnings
onCheckedChanged: {
StreamingPreferences.configurationWarnings = checked
}
}
CheckBox {
visible: SystemProperties.hasDiscordIntegration
id: discordPresenceCheck