LibGUI: Actually set window attributes when creating a window

This commit is contained in:
Bananymous 2024-11-14 23:33:12 +02:00
parent 0228cd4f31
commit 627c89a62d
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ namespace LibGUI
WindowPacket::WindowCreate create_packet; WindowPacket::WindowCreate create_packet;
create_packet.width = width; create_packet.width = width;
create_packet.height = height; create_packet.height = height;
create_packet.attributes = attributes;
TRY(create_packet.title.append(title)); TRY(create_packet.title.append(title));
TRY(create_packet.send_serialized(server_fd)); TRY(create_packet.send_serialized(server_fd));