diff options
author | John Ankarström <john@ankarstrom.se> | 2022-04-01 13:29:25 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-04-01 13:29:25 +0200 |
commit | 7b7fcdfef7487770d3089bafaedf467e30ed3afe (patch) | |
tree | 9ae144830bbf4a4ed8b96da3459bef4f30579f30 /c/datalistview.c | |
parent | 0b32a837283c4f90aee67f0721e38bf929a04882 (diff) | |
download | EpisodeBrowser-7b7fcdfef7487770d3089bafaedf467e30ed3afe.tar.gz |
Support per-monitor DPI.
Diffstat (limited to 'c/datalistview.c')
-rw-r--r-- | c/datalistview.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/c/datalistview.c b/c/datalistview.c index 901f16f..637350d 100644 --- a/c/datalistview.c +++ b/c/datalistview.c @@ -1,3 +1,4 @@ +#include <stdio.h> #include <windows.h> #include <commctrl.h> #include <SWI-Prolog.h> @@ -17,7 +18,8 @@ DlvCreate() lvc.mask = LVCF_WIDTH|LVCF_TEXT|LVCF_SUBITEM; lvc.iSubItem = 0; lvc.pszText = TEXT("Key"); - lvc.cx = 42; + + lvc.cx = Dpi(42); ListView_InsertColumn(HDlv, 0, &lvc); lvc.iSubItem = 1; |