Only enable the absolute mouse checkbox if the platform has a window manager

This commit is contained in:
Cameron Gutman 2020-04-25 13:04:22 -07:00
parent d1823dd6e1
commit e44d8ac7e9

View file

@ -583,7 +583,8 @@ Flickable {
hoverEnabled: true
text: "Optimize mouse for remote desktop instead of games"
font.pointSize: 12
checked: StreamingPreferences.absoluteMouseMode
enabled: SystemProperties.hasWindowManager
checked: StreamingPreferences.absoluteMouseMode && SystemProperties.hasWindowManager
onCheckedChanged: {
StreamingPreferences.absoluteMouseMode = checked
}