From bd4712a7db4940d9fda3e4ce54d5ecc048164430 Mon Sep 17 00:00:00 2001 From: freedom Date: Thu, 12 Oct 2023 01:35:54 -0600 Subject: [PATCH] i am strength --- progmgr/group.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progmgr/group.c b/progmgr/group.c index 62ff7b1..efb6284 100644 --- a/progmgr/group.c +++ b/progmgr/group.c @@ -155,7 +155,7 @@ HWND CreateGroup(_In_ PGROUP pg) // Create the group window ListView control if ((hWndListView = CreateWindowEx(WS_EX_LEFT, WC_LISTVIEW, TEXT("ListView"), WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN - | LVS_ICON | ((LVS_AUTOARRANGE & bAutoArrange) * LVS_AUTOARRANGE) | LVS_NOSORTHEADER, + | LVS_ICON | ((LVS_AUTOARRANGE & bAutoArrange) * LVS_AUTOARRANGE) | LVS_SINGLESEL, mcs.x, mcs.y, mcs.cx, mcs.cy, hWndGroup, NULL, hAppInstance, NULL)) == NULL)