diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-01-10 18:18:30 -0600 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-01-10 18:20:58 -0600 |
commit | 87b02f78e17b40b08f8efcb6a9fd8cf4dab976aa (patch) | |
tree | 8ab2d9da46fd3c8fcf0bb4bcc0d16a89c2633dde /src/yuzu/configuration/configure_input_player.h | |
parent | 948ac976d101229d49cf830a7df66690dd3640e5 (diff) |
yuzu: Read mouse wheel input
Diffstat (limited to 'src/yuzu/configuration/configure_input_player.h')
-rw-r--r-- | src/yuzu/configuration/configure_input_player.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_input_player.h b/src/yuzu/configuration/configure_input_player.h index 6d1876f2b..99a9c875d 100644 --- a/src/yuzu/configuration/configure_input_player.h +++ b/src/yuzu/configuration/configure_input_player.h @@ -116,6 +116,9 @@ private: /// Handle mouse button press events. void mousePressEvent(QMouseEvent* event) override; + /// Handle mouse wheel move events. + void wheelEvent(QWheelEvent* event) override; + /// Handle key press events. void keyPressEvent(QKeyEvent* event) override; |