1
0
Эх сурвалжийг харах

Set proper source relative X,Y coords on wheel interaction

John Bradley 11 жил өмнө
parent
commit
c62a0059ed

+ 4 - 1
obs/window-basic-interaction.cpp

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