diff options
author | Maxim Devaev <[email protected]> | 2021-08-15 17:34:42 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2021-08-15 20:16:48 +0300 |
commit | df098bd075e26fb6ecc75b2f7be5923371741677 (patch) | |
tree | 663a4e6a4808ed267e985c5b5d3d18bc4cf1f915 /kvmd/validators | |
parent | 9afa6efbe4b8ee3186c5d840233c96115363460f (diff) |
win95 runtime switching
Diffstat (limited to 'kvmd/validators')
-rw-r--r-- | kvmd/validators/hid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/validators/hid.py b/kvmd/validators/hid.py index 7d942969..b41bd5c8 100644 --- a/kvmd/validators/hid.py +++ b/kvmd/validators/hid.py @@ -37,7 +37,7 @@ def valid_hid_keyboard_output(arg: Any) -> str: def valid_hid_mouse_output(arg: Any) -> str: - return check_string_in_list(arg, "Mouse output", ["usb", "usb_rel", "ps2", "disabled"]) + return check_string_in_list(arg, "Mouse output", ["usb", "usb_win98", "usb_rel", "ps2", "disabled"]) def valid_hid_key(arg: Any) -> str: |