From e63cd21f96443b3aa10a69a04331a989821516e4 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 21 Nov 2014 16:25:44 -0500 Subject: [PATCH] Added checkbox heights to rowHeight() in the new Windows Table. --- wintable/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wintable/main.c b/wintable/main.c index db57a88..87fad02 100644 --- a/wintable/main.c +++ b/wintable/main.c @@ -118,6 +118,8 @@ static LONG rowHeight(struct table *t) ret = tm.tmHeight; if (ret < t->imagelistHeight) ret = t->imagelistHeight; + if (ret < t->checkboxHeight) + ret = t->checkboxHeight; return ret; }