mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-03 08:15:37 +00:00
Improve verbiage around quit app and optimize game settings options
This commit is contained in:
parent
a13fb3d7c5
commit
d7071cb67f
@ -655,7 +655,7 @@ Flickable {
|
|||||||
CheckBox {
|
CheckBox {
|
||||||
id: optimizeGameSettingsCheck
|
id: optimizeGameSettingsCheck
|
||||||
width: parent.width
|
width: parent.width
|
||||||
text: "Optimize game settings"
|
text: "Optimize game settings for streaming"
|
||||||
font.pointSize: 12
|
font.pointSize: 12
|
||||||
checked: StreamingPreferences.gameOptimizations
|
checked: StreamingPreferences.gameOptimizations
|
||||||
onCheckedChanged: {
|
onCheckedChanged: {
|
||||||
@ -673,6 +673,22 @@ Flickable {
|
|||||||
StreamingPreferences.playAudioOnHost = checked
|
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
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user