From 1c273f6337bcbc47aebdf2625d2e5f7a3d29efe6 Mon Sep 17 00:00:00 2001 From: freedom Date: Thu, 19 Oct 2023 10:50:44 -0600 Subject: [PATCH] plelaasee --- progmgr/group.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progmgr/group.c b/progmgr/group.c index 70076d4..336131a 100644 --- a/progmgr/group.c +++ b/progmgr/group.c @@ -134,7 +134,7 @@ HWND CreateGroup(_In_ PGROUP pg) mcs.cx = pg->rcGroup.right - pg->rcGroup.left; mcs.cy = pg->rcGroup.bottom - pg->rcGroup.top; } - mcs.style = WS_VISIBLE; + mcs.style = WS_VISIBLE | WS_THICKFRAME | WS_CAPTION | WS_BORDER | WS_SYSMENU | WS_MAXIMIZEBOX | WS_MINIMIZEBOX; // TODO: should I pass the pointer to the group through here // or is it better and easier to just do it with GWLP_USERDATA? mcs.lParam = (LPARAM)NULL;