1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

NotificationServer: Add new notification windows below the lowest one

Don't stack notifications on top of each other, instead put them below
one another on the y axis.

This will obviously break if the screen fills with notifications, but
that's a FIXME for now. :^)
This commit is contained in:
Andreas Kling 2020-02-16 19:51:44 +01:00
parent 9f54ea9bcd
commit 7efb497837
2 changed files with 14 additions and 0 deletions

View file

@ -38,6 +38,8 @@ public:
private:
NotificationWindow(const String& text, const String& title);
Gfx::Rect m_original_rect;
};
}