diff options
| author | Pietro Gagliardi <[email protected]> | 2014-11-21 16:25:44 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-11-21 16:25:44 -0500 |
| commit | e63cd21f96443b3aa10a69a04331a989821516e4 (patch) | |
| tree | f037a544f4d193dcc6e0f22f2ba3592db05aace9 /wintable/main.c | |
| parent | b5bc1077b82a294e6bf2bb2e5807f8ec1fc6a46d (diff) | |
Added checkbox heights to rowHeight() in the new Windows Table.
Diffstat (limited to 'wintable/main.c')
| -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; } |
