Browse Source

Merge pull request #7729 from v1993/patch-5

input_common: fix copy-paste error
nce_cpp
Mai M 4 years ago
committed by GitHub
parent
commit
624bb8bf26
  1. 2
      src/input_common/drivers/mouse.cpp

2
src/input_common/drivers/mouse.cpp

@ -31,7 +31,7 @@ Mouse::Mouse(std::string input_engine_) : InputEngine(std::move(input_engine_))
PreSetAxis(identifier, wheel_axis_x);
PreSetAxis(identifier, wheel_axis_y);
PreSetAxis(identifier, touch_axis_x);
PreSetAxis(identifier, touch_axis_x);
PreSetAxis(identifier, touch_axis_y);
update_thread = std::jthread([this](std::stop_token stop_token) { UpdateThread(stop_token); });
}

Loading…
Cancel
Save