1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:57:36 +00:00

Taskbar: Reposition the applet area when the desktop rect changes

This commit is contained in:
Andreas Kling 2021-03-30 23:39:34 +02:00
parent 0cd60a28ba
commit 2231205863
2 changed files with 19 additions and 6 deletions

View file

@ -50,8 +50,12 @@ private:
virtual void wm_event(GUI::WMEvent&) override;
void update_applet_area();
NonnullRefPtr<GUI::Menu> m_start_menu;
RefPtr<GUI::Widget> m_task_button_container;
RefPtr<Gfx::Bitmap> m_default_icon;
Gfx::IntSize m_applet_area_size;
RefPtr<GUI::Frame> m_applet_area_container;
};