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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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):