Show "Send message to resume" on the left of the status bar (#525)

This commit is contained in:
Ahmed Allam
2026-06-07 17:41:06 -07:00
committed by GitHub
parent dcf3155a9a
commit ac0fef2ed7
+3 -3
View File
@@ -1143,9 +1143,9 @@ class StrixTUIApp(App): # type: ignore[misc]
return (text, Text(), False) return (text, Text(), False)
if status == "waiting": if status == "waiting":
keymap = Text() text = Text()
keymap.append("Send message to resume", style="dim") text.append("Send message to resume", style="dim")
return (Text(" "), keymap, False) return (text, Text(), False)
if status == "running": if status == "running":
if self._agent_has_real_activity(agent_id): if self._agent_has_real_activity(agent_id):