1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00

WindowServer: Rename default_positioned() -> is_default_positioned()

Tiny change, but it really bothered me that this was the only function
not named like the rest.
This commit is contained in:
Valtteri Koskivuori 2022-01-24 18:24:58 +02:00 committed by Linus Groh
parent 82509ca0c8
commit 7a537ad08f
2 changed files with 2 additions and 2 deletions

View file

@ -2012,7 +2012,7 @@ Gfx::IntPoint WindowManager::get_recommended_window_position(Gfx::IntPoint const
Window const* overlap_window = nullptr;
current_window_stack().for_each_visible_window_of_type_from_front_to_back(WindowType::Normal, [&](Window& window) {
if (window.default_positioned() && (!overlap_window || overlap_window->window_id() < window.window_id())) {
if (window.is_default_positioned() && (!overlap_window || overlap_window->window_id() < window.window_id())) {
overlap_window = &window;
}
return IterationDecision::Continue;