Merge pull request #69390 from Sauermann/fix-mouse-event-position

Fix incorrect mouse event position while hovering different window
This commit is contained in:
Rémi Verschelde 2022-12-03 22:33:12 +01:00
commit 015dc492de
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -2910,11 +2910,10 @@ LRESULT DisplayServerWindows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARA
old_x = mm->get_position().x;
old_y = mm->get_position().y;
if (!windows[receiving_window_id].window_has_focus) {
// In case of unfocused Popups, adjust event position.
Point2i pos = mm->get_position() - window_get_position(receiving_window_id) + window_get_position(window_id);
mm->set_position(pos);
mm->set_global_position(pos);
if (receiving_window_id != window_id) {
// Adjust event position relative to window distance when event is sent to a different window.
mm->set_position(mm->get_position() - window_get_position(receiving_window_id) + window_get_position(window_id));
mm->set_global_position(mm->get_position());
}
Input::get_singleton()->parse_input_event(mm);