diff options
author | John Ankarström <john@ankarstrom.se> | 2022-04-07 21:16:34 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-04-07 21:16:34 +0200 |
commit | da5fcab1c3829ad22217ee73ce5d35e1b3937dbb (patch) | |
tree | 7959dcba4b64956c07e8279aea3e3c6273448aa2 | |
parent | a58ea9929854bc9e7588c91c7d5c3c953f372627 (diff) | |
download | EpisodeBrowser-da5fcab1c3829ad22217ee73ce5d35e1b3937dbb.tar.gz |
Fix LvHeight.
-rw-r--r-- | c/listview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c/listview.c b/c/listview.c index 868ab9e..9efe70a 100644 --- a/c/listview.c +++ b/c/listview.c @@ -74,5 +74,5 @@ LvHeight(HWND hLv, int bHeader) { int iCount; iCount = ListView_GetItemCount(hLv); - return iCount? Dpi(bHeader? 27: 3)+iCount*Dpi(19): 0; + return iCount? Dpi(bHeader? 27: 4)+iCount*Dpi(19): 0; } |