This commit is contained in:
Dikson Aranda 2025-04-01 15:59:58 +08:00 committed by GitHub
commit b068ec8e28
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1100,7 +1100,11 @@ impl Application {
.backend_mut()
.show_cursor(CursorKind::Block)
.ok();
self.terminal.restore(terminal_config)
use std::io::Write;
self.terminal.restore(terminal_config)?;
write!(std::io::stdout(), "\x1B[0 q") // reset to cursor shape
}
pub async fn run<S>(&mut self, input_stream: &mut S) -> Result<i32, Error>