diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-27 11:21:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 11:21:28 -0400 |
commit | 20111c86b65afef07923fdb2f15867b7f8c69e32 (patch) | |
tree | 85e51391c820e75f40a7e4d8dd9b882d7f5d5b36 /src/input_common/drivers/mouse.h | |
parent | f254ce2c60fc3e59a98293e01198eff041c0eeaf (diff) | |
parent | 8e3d4e33961ef7276247ee03ac5c342d4055ac3a (diff) |
Merge pull request #10495 from bm01/master
input_common: Redesign mouse panning
Diffstat (limited to 'src/input_common/drivers/mouse.h')
-rw-r--r-- | src/input_common/drivers/mouse.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input_common/drivers/mouse.h b/src/input_common/drivers/mouse.h index b872c7a0f0..0e8edcce15 100644 --- a/src/input_common/drivers/mouse.h +++ b/src/input_common/drivers/mouse.h @@ -98,7 +98,6 @@ private: void UpdateThread(std::stop_token stop_token); void UpdateStickInput(); void UpdateMotionInput(); - void StopPanning(); Common::Input::ButtonNames GetUIButtonName(const Common::ParamPackage& params) const; @@ -108,7 +107,6 @@ private: Common::Vec3<float> last_motion_change; Common::Vec2<int> wheel_position; bool button_pressed; - int mouse_panning_timeout{}; std::jthread update_thread; }; |