Browse Source

Set proper source relative X,Y coords on wheel interaction

John Bradley 11 years ago
parent
commit
c62a0059ed
1 changed files with 4 additions and 1 deletions
  1. 4 1
      obs/window-basic-interaction.cpp

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

@@ -347,7 +347,10 @@ bool OBSBasicInteraction::HandleMouseWheelEvent(QWheelEvent *event)
 			yDelta = event->delta();
 			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;
 	return true;
 }
 }