Added checkbox heights to rowHeight() in the new Windows Table.
This commit is contained in:
parent
b5bc1077b8
commit
e63cd21f96
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue