From d7071cb67f9be15e40df4b4e31f48dd0193a610e Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 23 Jun 2020 22:17:40 -0700 Subject: [PATCH] Improve verbiage around quit app and optimize game settings options --- app/gui/SettingsView.qml | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/app/gui/SettingsView.qml b/app/gui/SettingsView.qml index bcbde554..e09a5960 100644 --- a/app/gui/SettingsView.qml +++ b/app/gui/SettingsView.qml @@ -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 - } - } } } }