Input: Update mouse position on mouse-button events.

This commit is contained in:
Andreas Haas 2017-03-24 21:55:58 +01:00
parent efaeebab4d
commit 468719c480
No known key found for this signature in database
GPG key ID: B5FFAE1B65FBD2E1

View file

@ -336,6 +336,11 @@ void InputDefault::parse_input_event(const InputEvent &p_event) {
ev.screen_touch = touch_event;
main_loop->input_event(ev);
}
Point2 pos = Point2(p_event.mouse_button.global_x, p_event.mouse_button.global_y);
if (mouse_pos != pos) {
set_mouse_pos(pos);
}
} break;
case InputEvent::MOUSE_MOTION: {