From c0f4fceedf830cacd89fde9022fca6639baf5c6c Mon Sep 17 00:00:00 2001 From: nojhan Date: Mon, 31 Jul 2023 15:39:52 +0200 Subject: [PATCH] fix HorizontalSpaced spacing --- klyban.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/klyban.py b/klyban.py index d9fb8c8..c4383a3 100644 --- a/klyban.py +++ b/klyban.py @@ -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: