1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 19:15:07 +00:00

WindowServer: Oops, forgot to plumb through the base size for incresize.

This commit is contained in:
Andreas Kling 2019-02-21 10:11:12 +01:00
parent 6084cd0c56
commit 16cd4585cd
3 changed files with 3 additions and 2 deletions

View file

@ -320,6 +320,7 @@ void WSClientConnection::handle_request(WSAPICreateWindowRequest& request)
window->set_rect(request.rect());
window->set_opacity(request.opacity());
window->set_size_increment(request.size_increment());
window->set_base_size(request.base_size());
m_windows.set(window_id, move(window));
WSAPI_ServerMessage response;
response.type = WSAPI_ServerMessage::Type::DidCreateWindow;