Skip to content

Commit 8225428

Browse files
committed
Fix cursor occasionally blinking in unexpected places
1 parent 724c7e6 commit 8225428

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## [Unreleased] <!-- ReleaseDate -->
66

7-
- No changes since the latest release below.
7+
- Fix cursor occasionally blinking in unexpected places.
88

99
## [0.7.2] - 2024-03-17
1010

inquire/src/ui/frame_renderer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ where
280280
current_frame.frame_size.height(),
281281
);
282282

283-
//self.terminal.cursor_hide()?;
283+
self.terminal.cursor_hide()?;
284284
self.move_cursor_to(Position { row: 0, col: 0 })?;
285285

286286
for i in 0..rows_to_iterate {

0 commit comments

Comments
 (0)