aboutsummaryrefslogtreecommitdiff
path: root/c/listview.c
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-04-01 13:29:25 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-04-01 13:29:25 +0200
commit7b7fcdfef7487770d3089bafaedf467e30ed3afe (patch)
tree9ae144830bbf4a4ed8b96da3459bef4f30579f30 /c/listview.c
parent0b32a837283c4f90aee67f0721e38bf929a04882 (diff)
downloadEpisodeBrowser-7b7fcdfef7487770d3089bafaedf467e30ed3afe.tar.gz
Support per-monitor DPI.
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 ce81adf..628ed13 100644
--- a/c/listview.c
+++ b/c/listview.c
@@ -74,7 +74,7 @@ LvHeight(HWND hLv)
{
int iCount;
iCount = ListView_GetItemCount(hLv);
- return iCount? 27+iCount*19: 0;
+ return iCount? Dpi(27)+iCount*Dpi(19): 0;
}
/* Enable/disable non-classic list view theme. */