diff options
| -rw-r--r-- | wintable/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; } |
