summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-11-21 16:25:44 -0500
committerPietro Gagliardi <[email protected]>2014-11-21 16:25:44 -0500
commite63cd21f96443b3aa10a69a04331a989821516e4 (patch)
treef037a544f4d193dcc6e0f22f2ba3592db05aace9
parentb5bc1077b82a294e6bf2bb2e5807f8ec1fc6a46d (diff)
Added checkbox heights to rowHeight() in the new Windows Table.
-rw-r--r--wintable/main.c2
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;
}