Codechange: remove queue_wrap / last_position from mouse movement

No backend uses it anymore, so also no longer any need to support
it.
This commit is contained in:
Patric Stout
2023-06-03 23:10:16 +02:00
committed by Patric Stout
parent e83f244750
commit 0d840b4570
7 changed files with 12 additions and 44 deletions

View File

@@ -658,7 +658,7 @@ void CocoaDialog(const char *title, const char *message, const char *buttonLabel
_cursor.UpdateCursorPositionRelative(event.deltaX * self.getContentsScale, event.deltaY * self.getContentsScale);
} else {
NSPoint pt = [ self mousePositionFromEvent:event ];
_cursor.UpdateCursorPosition(pt.x, pt.y, false);
_cursor.UpdateCursorPosition(pt.x, pt.y);
}
HandleMouseEvents();