Change raw input checkbox to adjust absolute vs relative mouse mode

This commit is contained in:
Cameron Gutman
2020-04-25 13:00:39 -07:00
parent 07128cc7fe
commit 80bfd3b8e9
5 changed files with 19 additions and 18 deletions
+7 -6
View File
@@ -579,19 +579,20 @@ Flickable {
}
CheckBox {
id: rawInputCheck
id: absoluteMouseCheck
hoverEnabled: true
text: "Raw mouse input"
text: "Optimize mouse for remote desktop instead of games"
font.pointSize: 12
checked: !StreamingPreferences.mouseAcceleration
checked: StreamingPreferences.absoluteMouseMode
onCheckedChanged: {
StreamingPreferences.mouseAcceleration = !checked
StreamingPreferences.absoluteMouseMode = checked
}
ToolTip.delay: 1000
ToolTip.timeout: 3000
ToolTip.timeout: 5000
ToolTip.visible: hovered
ToolTip.text: "When checked, mouse input is not accelerated or scaled by the OS before passing to Moonlight"
ToolTip.text: "This enables mouse control without capturing the client's mouse cursor. It will not work in most games.\n
You can toggle this while streaming using Ctrl+Alt+Shift+M."
}
CheckBox {