vosel

Results 2 comments of vosel

Here is a snippet of the simulation code I am using: ```c++ ROBOT_NS::KeyList sequence; auto result = ROBOT_NS::Keyboard::Compile("+{INSERT}", sequence); for (auto const & key_event : sequence) { if (key_event.first) {...

The reason of such behaviour is probably caused by the windows handling of the `MOUSEEVENTF_HWHEEL` events. The winapi's `SendInput()` function is treating it as a 'wheel tilt' event and assumes...