column is unnecessary, remove

This commit is contained in:
freedom7341
2023-10-11 12:24:05 -06:00
parent efb000f4ec
commit ea0c0773e6

View File

@@ -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;