fix HorizontalSpaced spacing

This commit is contained in:
Johann Dreo 2023-07-31 15:39:52 +02:00
commit c0f4fceedf

View file

@ -16,6 +16,7 @@ from rich.panel import Panel as richPanel
from rich.columns import Columns as richColumns
from rich.theme import Theme as richTheme
from rich.layout import Layout as richLayout
from rich.console import Group as richGroup
from rich import box
@ -563,6 +564,10 @@ class HorizontalSpaced(Horizontal):
else:
task_table.add_row(item, style = h)
# Add one final row for spacing,
# using a non-breakable space to bypass fakepan row filtering.
task_table.add_row('')
if task['H']:
row_style = 'matching'
else: