fix(tui2): running /mcp was not printing any output until another event triggered a flush (#9457)

This seems to fix things, but I'm not sure if this is the
correct/minimal fix.
This commit is contained in:
Michael Bolin
2026-01-18 19:19:37 -08:00
committed by GitHub
parent f72f87fbee
commit c87a7d9043

View File

@@ -1610,6 +1610,8 @@ impl App {
self.transcript_cells.push(cell.clone());
if self.overlay.is_some() {
self.deferred_history_cells.push(cell);
} else {
tui.frame_requester().schedule_frame();
}
}
AppEvent::StartCommitAnimation => {