Phase 1
This commit is contained in:
parent
97b6168ba6
commit
bbc1f724e1
3 changed files with 6 additions and 6 deletions
|
|
@ -556,8 +556,8 @@ namespace config {
|
|||
true, // client gamepads with touchpads are emulated as DS4
|
||||
true, // ds5_inputtino_randomize_mac
|
||||
|
||||
true, // keyboard enabled
|
||||
true, // mouse enabled
|
||||
false, // keyboard disabled (Parsec-style default)
|
||||
false, // mouse disabled (Parsec-style default)
|
||||
true, // controller enabled
|
||||
true, // always send scancodes
|
||||
true, // high resolution scrolling
|
||||
|
|
|
|||
|
|
@ -203,12 +203,12 @@
|
|||
"touchpad_as_ds4": "enabled",
|
||||
"ds5_inputtino_randomize_mac": "enabled",
|
||||
"back_button_timeout": -1,
|
||||
"keyboard": "enabled",
|
||||
"keyboard": "disabled",
|
||||
"key_repeat_delay": 500,
|
||||
"key_repeat_frequency": 24.9,
|
||||
"always_send_scancodes": "enabled",
|
||||
"key_rightalt_to_key_win": "disabled",
|
||||
"mouse": "enabled",
|
||||
"mouse": "disabled",
|
||||
"high_resolution_scrolling": "enabled",
|
||||
"native_pen_touch": "enabled",
|
||||
"keybindings": "[0x10,0xA0,0x11,0xA2,0x12,0xA4]", // todo: add this to UI
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@ const config = ref(props.config)
|
|||
id="keyboard"
|
||||
locale-prefix="config"
|
||||
v-model="config.keyboard"
|
||||
default="true"
|
||||
default="false"
|
||||
></Checkbox>
|
||||
|
||||
<!-- Key Repeat Delay-->
|
||||
|
|
@ -161,7 +161,7 @@ const config = ref(props.config)
|
|||
id="mouse"
|
||||
locale-prefix="config"
|
||||
v-model="config.mouse"
|
||||
default="true"
|
||||
default="false"
|
||||
></Checkbox>
|
||||
|
||||
<!-- High resolution scrolling support -->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue