mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-04 06:36:08 -05:00
Set proper source relative X,Y coords on wheel interaction
This commit is contained in:
@@ -347,7 +347,10 @@ bool OBSBasicInteraction::HandleMouseWheelEvent(QWheelEvent *event)
|
||||
yDelta = event->delta();
|
||||
}
|
||||
|
||||
obs_source_send_mouse_wheel(source, &mouseEvent, xDelta, yDelta);
|
||||
if (GetSourceRelativeXY(event->x(), event->y(), mouseEvent.x,
|
||||
mouseEvent.y))
|
||||
obs_source_send_mouse_wheel(source, &mouseEvent, xDelta,
|
||||
yDelta);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user