From ac0fef2ed70af0a579953786c576b474cdac226e Mon Sep 17 00:00:00 2001 From: Ahmed Allam <49919286+0xallam@users.noreply.github.com> Date: Sun, 7 Jun 2026 17:41:06 -0700 Subject: [PATCH] Show "Send message to resume" on the left of the status bar (#525) --- strix/interface/tui/app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/strix/interface/tui/app.py b/strix/interface/tui/app.py index 335622e..0987720 100644 --- a/strix/interface/tui/app.py +++ b/strix/interface/tui/app.py @@ -1143,9 +1143,9 @@ class StrixTUIApp(App): # type: ignore[misc] return (text, Text(), False) if status == "waiting": - keymap = Text() - keymap.append("Send message to resume", style="dim") - return (Text(" "), keymap, False) + text = Text() + text.append("Send message to resume", style="dim") + return (text, Text(), False) if status == "running": if self._agent_has_real_activity(agent_id):