1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:38:11 +00:00

WindowServer: Tweak window frame height

This commit is contained in:
Andreas Kling 2020-04-23 15:36:00 +02:00
parent cbc3d4fddd
commit 81ebc0cfe3

View file

@ -285,7 +285,7 @@ static Gfx::Rect frame_rect_for_window(Window& window, const Gfx::Rect& rect)
rect.x() - 4,
rect.y() - window_titlebar_height - 5 + offset,
rect.width() + 8,
rect.height() + 8 + window_titlebar_height - offset
rect.height() + 9 + window_titlebar_height - offset
};
case WindowType::Notification:
return {