Skip to content

Commit 6adbe2e

Browse files
committed
fix(tui): always show cursor in prompt input (even during streaming)
1 parent a1efa1a commit 6adbe2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src-rust/crates/tui/src/render.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ pub fn render_app(frame: &mut Frame, app: &App) {
429429
);
430430

431431
let prompt_focused =
432-
!app.is_streaming && app.permission_request.is_none() && !app.history_search_overlay.visible;
432+
app.permission_request.is_none() && !app.history_search_overlay.visible;
433433
// Suggestions popup tracks whether the prompt accepts input, not whether
434434
// it is the focused widget. Text entry is allowed during streaming so the
435435
// user can queue the next message, so the typeahead popup must follow

0 commit comments

Comments
 (0)