Rename multi-controller checkbox to be more descriptive

This commit is contained in:
Cameron Gutman 2018-11-29 20:10:47 -08:00
parent 094443cf26
commit 23e77eefb0

View File

@ -492,13 +492,19 @@ Flickable {
spacing: 5 spacing: 5
CheckBox { CheckBox {
id: multiControllerCheck id: singleControllerCheck
text: "Multiple controller support" text: "Force gamepad #1 always present"
font.pointSize: 12 font.pointSize: 12
checked: prefs.multiController checked: !prefs.multiController
onCheckedChanged: { onCheckedChanged: {
prefs.multiController = checked prefs.multiController = !checked
} }
ToolTip.delay: 1000
ToolTip.timeout: 5000
ToolTip.visible: hovered
ToolTip.text: "Forces a single gamepad to always stay connected to the host, even if no gamepads are actually connected to this PC.\n" +
"Only enable this option when streaming a game that doesn't support gamepads being connected after startup."
} }
CheckBox { CheckBox {