Added checkbox heights to rowHeight() in the new Windows Table.

This commit is contained in:
Pietro Gagliardi 2014-11-21 16:25:44 -05:00
parent b5bc1077b8
commit e63cd21f96
1 changed files with 2 additions and 0 deletions

View File

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