aboutsummaryrefslogtreecommitdiff
path: root/c/listview.c
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-04-07 23:49:58 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-04-07 23:49:58 +0200
commit4933f9193ac0498c1a46e30072726020625e47e6 (patch)
tree36f3cb70c5aad189ee513b92e3978f2ddb9584d2 /c/listview.c
parentda5fcab1c3829ad22217ee73ce5d35e1b3937dbb (diff)
downloadEpisodeBrowser-4933f9193ac0498c1a46e30072726020625e47e6.tar.gz
Implement sorting.
Diffstat (limited to 'c/listview.c')
-rw-r--r--c/listview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/listview.c b/c/listview.c
index 9efe70a..91838da 100644
--- a/c/listview.c
+++ b/c/listview.c
@@ -20,7 +20,7 @@ LvCreate(HMENU hMenu, DWORD dwStyle)
WC_LISTVIEW,
TEXT(""),
dwStyle|WS_CHILD|WS_VISIBLE|WS_VSCROLL|WS_TABSTOP
- |LVS_REPORT|LVS_NOSORTHEADER|LVS_SHOWSELALWAYS,
+ |LVS_REPORT|LVS_SHOWSELALWAYS,
0, 0, 0, 0,
HWnd, hMenu, GetModuleHandle(NULL), NULL
);