diff options
author | John Ankarström <john@ankarstrom.se> | 2022-04-04 01:20:30 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-04-04 01:20:30 +0200 |
commit | 12176831abde1f4545fae95ee9edd5688f8cc584 (patch) | |
tree | 4591be39e96b4deb4f45072808be48724e84108e /c/episodelistview.c | |
parent | d77a1f32a0ea391628a6c43dcfe02f648f1ae488 (diff) | |
download | EpisodeBrowser-12176831abde1f4545fae95ee9edd5688f8cc584.tar.gz |
Remove column headers from data list view.
Diffstat (limited to 'c/episodelistview.c')
-rw-r--r-- | c/episodelistview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c/episodelistview.c b/c/episodelistview.c index 54c8b8c..0a85635 100644 --- a/c/episodelistview.c +++ b/c/episodelistview.c @@ -17,7 +17,7 @@ ElvCreate() LpLviElvSelection = malloc(sizeof(LVITEM)); if (!LpLviElvSelection) return NULL; - HElv = LvCreate((HMENU)IDC_EPISODELISTVIEW); + HElv = LvCreate((HMENU)IDC_EPISODELISTVIEW, 0); lvc.mask = LVCF_WIDTH|LVCF_TEXT|LVCF_SUBITEM; lvc.iSubItem = 0; |