This commit is contained in:
Will McGugan 2022-01-08 13:32:46 +00:00
parent 408b3bc688
commit 4abbbd1390
2 changed files with 3 additions and 1 deletions

View File

@ -800,6 +800,7 @@ class Table(JupyterMixin):
def align_cell(
cell: List[List[Segment]],
vertical: "VerticalAlignMethod",
width: int,
style: Style,
) -> List[List[Segment]]:
if header_row:
@ -818,6 +819,7 @@ class Table(JupyterMixin):
align_cell(
cell,
_cell.vertical,
width,
get_style(_cell.style) + row_style,
),
width,

File diff suppressed because one or more lines are too long