Set proper source relative X,Y coords on wheel interaction

This commit is contained in:
John Bradley
2014-09-17 12:05:49 -05:00
parent 3b0fa22f8a
commit c62a0059ed

View File

@@ -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;
}