From da5fcab1c3829ad22217ee73ce5d35e1b3937dbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Thu, 7 Apr 2022 21:16:34 +0200 Subject: Fix LvHeight. --- c/listview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3