Merge pull request #94987 from kitbdev/fix-update-mouse-cursor-state-pos

Fix update mouse cursor state wrong mouse position
This commit is contained in:
Rémi Verschelde 2024-07-31 22:33:11 +02:00
commit b6dee96f68
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -810,7 +810,7 @@ void Window::update_mouse_cursor_state() {
mm->set_position(pos);
mm->set_global_position(xform.xform(pos));
mm->set_device(InputEvent::DEVICE_ID_INTERNAL);
push_input(mm);
push_input(mm, true);
}
void Window::show() {