From 497944408640a3f83e1aa37468e80f2b3357159b Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:08:48 -0400 Subject: [PATCH] Show all data in live even when taller than terminal --- src/controlflow/orchestration/print_handler.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/controlflow/orchestration/print_handler.py b/src/controlflow/orchestration/print_handler.py index f76523aa..e121474d 100644 --- a/src/controlflow/orchestration/print_handler.py +++ b/src/controlflow/orchestration/print_handler.py @@ -59,7 +59,9 @@ def update_live(self, latest: BaseMessage = None): cf_console.print(format_event(latest)) def on_orchestrator_start(self, event: OrchestratorStart): - self.live: Live = Live(auto_refresh=False, console=cf_console) + self.live: Live = Live( + auto_refresh=False, console=cf_console, vertical_overflow="visible" + ) self.events.clear() try: self.live.start()