mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-15 21:22:40 +00:00
Change raw input checkbox to adjust absolute vs relative mouse mode
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user