mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-17 14:11:33 +00:00
Rename mouse acceleration toggle to raw mouse input
This commit is contained in:
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user