From 5d7536d5fdd1cba6194b255a61197560310a9069 Mon Sep 17 00:00:00 2001 From: freedom7341 Date: Fri, 29 Sep 2023 17:16:18 -0600 Subject: [PATCH] program groups are now.. INVINCIBLE --- progmgr/group.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/progmgr/group.c b/progmgr/group.c index 326ed3d..922732d 100644 --- a/progmgr/group.c +++ b/progmgr/group.c @@ -235,6 +235,9 @@ LRESULT CALLBACK GroupWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa break; } + case WM_CLOSE: + return ShowWindow(hWnd, SW_MINIMIZE); + default: return DefMDIChildProc(hWnd, message, wParam, lParam); }