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

Browser: Inform WebView processes of the browser window's position/size

This commit is contained in:
Timothy Flynn 2022-11-01 15:43:53 -04:00 committed by Linus Groh
parent 6aea60e6ee
commit 325e3c7bc6
5 changed files with 53 additions and 0 deletions

View file

@ -190,5 +190,8 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
window->show();
window->broadcast_window_position(window->position());
window->broadcast_window_size(window->size());
return app->exec();
}