From ea0c0773e64a07fe13e3a7dd10dda52f17d0c942 Mon Sep 17 00:00:00 2001 From: freedom7341 Date: Wed, 11 Oct 2023 12:24:05 -0600 Subject: [PATCH] column is unnecessary, remove --- progmgr/group.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/progmgr/group.c b/progmgr/group.c index 2c58129..e03907c 100644 --- a/progmgr/group.c +++ b/progmgr/group.c @@ -168,12 +168,6 @@ HWND CreateGroup(_In_ PGROUP pg) // add the explorer style because it looks good SetWindowTheme(hWndListView, TEXT("Explorer"), NULL); - // create a ListView name column - lvc.mask = LVCF_FMT | LVCF_WIDTH; - lvc.fmt = LVCFMT_LEFT; - lvc.cx = 100; - ListView_InsertColumn(hWndListView, 0, &lvc); - // TODO: make sure the groups delete their icons upon destruction! return hWndGroup;