summaryrefslogtreecommitdiff
path: root/kvmd/plugins/hid/__init__.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2019-10-01 05:48:20 +0300
committerDevaev Maxim <[email protected]>2019-10-01 05:48:20 +0300
commit8cc5f631cafe84794c878244649ab11087631efd (patch)
treecca3e02fe967f5291b2ff791ad871e9e1fcf990e /kvmd/plugins/hid/__init__.py
parent74931a8096aed89ef7d03e327978d1a2963c92c7 (diff)
horizontal scrolling for otg
Diffstat (limited to 'kvmd/plugins/hid/__init__.py')
-rw-r--r--kvmd/plugins/hid/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/hid/__init__.py b/kvmd/plugins/hid/__init__.py
index bb4ec677..5bc5ca52 100644
--- a/kvmd/plugins/hid/__init__.py
+++ b/kvmd/plugins/hid/__init__.py
@@ -57,7 +57,7 @@ class BaseHid(BasePlugin):
async def send_mouse_button_event(self, button: str, state: bool) -> None:
raise NotImplementedError
- async def send_mouse_wheel_event(self, delta_y: int) -> None:
+ async def send_mouse_wheel_event(self, delta_x: int, delta_y: int) -> None:
raise NotImplementedError
async def clear_events(self) -> None: