PgBiel / typst-tablex

More powerful and customizable tables in Typst
MIT License
370 stars 12 forks source link

Fix extra rows always having `auto` height #108

Closed PgBiel closed 8 months ago

PgBiel commented 8 months ago

When N rows were specified, but the table ended up having M > N rows, all the M - N extra rows end up always having auto height, when, in reality, they should have the height of the last specified row height in the rows parameter (for example, if rows: (25pt, 3pt) was given, then they should have a height of 3pt).

Fixes #97