Rename mouse acceleration toggle to raw mouse input

This commit is contained in:
Cameron Gutman
2018-11-04 13:31:28 -08:00
parent 7254224347
commit dda22fd387
+10 -4
View File
@@ -449,13 +449,19 @@ ScrollView {
} }
CheckBox { CheckBox {
id: mouseAccelerationCheck id: rawInputCheck
text: "<font color=\"white\">Enable mouse acceleration</font>" hoverEnabled: true
text: "<font color=\"white\">Raw mouse input</font>"
font.pointSize: 12 font.pointSize: 12
checked: prefs.mouseAcceleration checked: !prefs.mouseAcceleration
onCheckedChanged: { onCheckedChanged: {
prefs.mouseAcceleration = checked prefs.mouseAcceleration = !checked
} }
ToolTip.delay: 1000
ToolTip.timeout: 3000
ToolTip.visible: hovered
ToolTip.text: "When checked, mouse input is not accelerated or scaled by the OS before passing to Moonlight"
} }
} }
} }