mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 12:49:19 +00:00
WindowServer: Properly determine where a window may be
This also fixes weird behavior of WindowManager::desktop_rect(). None of the callers seem to ever expect an empty Rect, so return a non-empty Rect.
This commit is contained in:
parent
af605afb27
commit
3fd5aec187
Notes:
sideshowbarker
2024-07-18 22:45:34 +09:00
Author: https://github.com/BenWiederhake
Commit: 3fd5aec187
Pull-request: https://github.com/SerenityOS/serenity/pull/5156
Reviewed-by: https://github.com/emanuele6
Reviewed-by: https://github.com/nico
3 changed files with 22 additions and 2 deletions
|
@ -183,7 +183,7 @@ void Window::normalize_rect()
|
|||
// For example, the windows that make the desktop rect smaller
|
||||
// than the display resolution (e.g. the TaskBar).
|
||||
auto min_visible = -1;
|
||||
auto desktop = WindowManager::the().desktop_rect();
|
||||
auto desktop = WindowManager::the().arena_rect_for_type(type())
|
||||
auto min_y = 0;
|
||||
if (type() == WindowType::Normal) {
|
||||
min_size = 50;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue