qt: Avoid reading absolute mouse input from cross-platform Qt code on Windows
This ensures only RAWINPUT sends mouse input to the emulated machine on Windows.
This commit is contained in:
@@ -174,7 +174,7 @@ RendererStack::mouseMoveEvent(QMouseEvent *event)
|
||||
event->ignore();
|
||||
return;
|
||||
}
|
||||
#ifdef __APPLE__
|
||||
#if defined __APPLE__ || defined _WIN32
|
||||
event->accept();
|
||||
return;
|
||||
#else
|
||||
|
Reference in New Issue
Block a user