1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:47:35 +00:00

WindowServer: Rename "active input tracking window"

...to "automatic cursor tracking window". This matches what we call its
sibling concept in LibGUI ("automatic cursor tracking widget").
This commit is contained in:
Andreas Kling 2022-08-15 22:34:17 +02:00
parent 6548ae8afd
commit add4f42d21
3 changed files with 21 additions and 21 deletions

View file

@ -40,8 +40,8 @@ void WindowStack::remove(Window& window)
m_active_window = nullptr;
if (m_active_input_window == &window)
m_active_input_window = nullptr;
if (m_active_input_tracking_window == &window)
m_active_input_tracking_window = nullptr;
if (m_automatic_cursor_tracking_window == &window)
m_automatic_cursor_tracking_window = nullptr;
}
void WindowStack::move_to_front(Window& window)
@ -102,7 +102,7 @@ void WindowStack::move_all_windows(WindowStack& new_window_stack, Vector<Window*
}
m_active_window = nullptr;
m_active_input_window = nullptr;
m_active_input_tracking_window = nullptr;
m_automatic_cursor_tracking_window = nullptr;
}
Window* WindowStack::window_at(Gfx::IntPoint const& position, IncludeWindowFrame include_window_frame) const