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; }