1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:17:45 +00:00

WindowServer: Fix 'sticky' mouse after resize

This fixes #9933 and some dead code I accidentally left over.
Thanks, @Maato!
This commit is contained in:
Ben Wiederhake 2021-09-10 21:58:57 +02:00 committed by Andreas Kling
parent 61f573fa67
commit 7684e4f726
3 changed files with 10 additions and 8 deletions

View file

@ -1182,7 +1182,7 @@ void WindowManager::process_mouse_event_for_window(HitTestResult& result, MouseE
return;
}
if (!window.global_cursor_tracking()) {
if (!window.is_automatic_cursor_tracking()) {
deliver_mouse_event(window, event, true);
}
@ -1206,6 +1206,14 @@ void WindowManager::process_mouse_event(MouseEvent& event)
conn.async_track_mouse_move(event.position());
}
});
// The active input tracking window is excluded here because we're sending the event to it
// in the next step.
auto& window_stack = current_window_stack();
for_each_visible_window_from_front_to_back([&](Window& window) {
if (window.is_automatic_cursor_tracking() && &window != window_stack.active_input_tracking_window())
deliver_mouse_event(window, event, false);
return IterationDecision::Continue;
});
// 3. If there's an active input tracking window, all mouse events go there.
// Tracking ends after all mouse buttons have been released.