diff --git a/app/gui/SettingsView.qml b/app/gui/SettingsView.qml
index 42f640c5..8af80c4b 100644
--- a/app/gui/SettingsView.qml
+++ b/app/gui/SettingsView.qml
@@ -449,13 +449,19 @@ ScrollView {
}
CheckBox {
- id: mouseAccelerationCheck
- text: "Enable mouse acceleration"
+ id: rawInputCheck
+ hoverEnabled: true
+ text: "Raw mouse input"
font.pointSize: 12
- checked: prefs.mouseAcceleration
+ checked: !prefs.mouseAcceleration
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"
}
}
}