From 627c89a62dd5b29c3e4017cf238b94cccac42caa Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 14 Nov 2024 23:33:12 +0200 Subject: [PATCH] LibGUI: Actually set window attributes when creating a window --- userspace/libraries/LibGUI/Window.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/userspace/libraries/LibGUI/Window.cpp b/userspace/libraries/LibGUI/Window.cpp index 687753d4..524a35be 100644 --- a/userspace/libraries/LibGUI/Window.cpp +++ b/userspace/libraries/LibGUI/Window.cpp @@ -98,6 +98,7 @@ namespace LibGUI WindowPacket::WindowCreate create_packet; create_packet.width = width; create_packet.height = height; + create_packet.attributes = attributes; TRY(create_packet.title.append(title)); TRY(create_packet.send_serialized(server_fd));