Improve verbiage around quit app and optimize game settings options

This commit is contained in:
Cameron Gutman 2020-06-23 22:17:40 -07:00
parent a13fb3d7c5
commit d7071cb67f

View File

@ -655,7 +655,7 @@ Flickable {
CheckBox {
id: optimizeGameSettingsCheck
width: parent.width
text: "Optimize game settings"
text: "Optimize game settings for streaming"
font.pointSize: 12
checked: StreamingPreferences.gameOptimizations
onCheckedChanged: {
@ -673,6 +673,22 @@ Flickable {
StreamingPreferences.playAudioOnHost = checked
}
}
CheckBox {
id: quitAppAfter
width: parent.width
text: "Quit app on host PC after ending stream"
font.pointSize: 12
checked: StreamingPreferences.quitAppAfter
onCheckedChanged: {
StreamingPreferences.quitAppAfter = checked
}
ToolTip.delay: 1000
ToolTip.timeout: 5000
ToolTip.visible: hovered
ToolTip.text: "This will close the app or game you are streaming when you end your stream. You will lose any unsaved progress!"
}
}
}
@ -826,17 +842,6 @@ Flickable {
}
}
}
CheckBox {
id: quitAppAfter
width: parent.width
text: "Quit app after quitting session"
font.pointSize: 12
checked: StreamingPreferences.quitAppAfter
onCheckedChanged: {
StreamingPreferences.quitAppAfter = checked
}
}
}
}
}