Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/prompt_toolkit/renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def get_max_column_index(row: dict[int, Char]) -> int:
# give weird artifacts on resize events.)
reset_attributes()

if screen.show_cursor or is_done:
if screen.show_cursor:
output.show_cursor()

return current_pos, last_style
Expand Down Expand Up @@ -416,6 +416,7 @@ def reset(self, _scroll: bool = False, leave_alternate_screen: bool = True) -> N
self._bracketed_paste_enabled = False

self.output.reset_cursor_shape()
self.output.show_cursor()

# NOTE: No need to set/reset cursor key mode here.

Expand Down
Loading