diff --git a/Userland/Services/WindowServer/WindowManager.cpp b/Userland/Services/WindowServer/WindowManager.cpp index c73c82eeb1..668ebc5675 100644 --- a/Userland/Services/WindowServer/WindowManager.cpp +++ b/Userland/Services/WindowServer/WindowManager.cpp @@ -1492,7 +1492,7 @@ Gfx::IntRect WindowManager::maximized_window_rect(const Window& window) const return IterationDecision::Break; }); - constexpr int tasteful_space_above_maximized_window = 2; + constexpr int tasteful_space_above_maximized_window = 1; rect.set_y(rect.y() + tasteful_space_above_maximized_window); rect.set_height(rect.height() - tasteful_space_above_maximized_window);