mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:27:43 +00:00
LibGUI: Add callback for screen rect change to Desktop.h
callbacks for screen rect changes can be added with on_receive_screen_rects()
This commit is contained in:
parent
222b97488a
commit
b8f3441300
2 changed files with 10 additions and 0 deletions
|
@ -39,6 +39,9 @@ void Desktop::did_receive_screen_rects(Badge<WindowServerConnection>, const Vect
|
|||
|
||||
m_virtual_desktop_rows = virtual_desktop_rows;
|
||||
m_virtual_desktop_columns = virtual_desktop_columns;
|
||||
|
||||
for (auto& callback : m_receive_rects_callbacks)
|
||||
callback(*this);
|
||||
}
|
||||
|
||||
void Desktop::set_background_color(const StringView& background_color)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue