We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91b2033 commit 22f691fCopy full SHA for 22f691f
src/core/utils/term.rs
@@ -64,9 +64,9 @@ pub fn cleanup(
64
if cleanup_screen {
65
// Reverse order of setup.
66
execute!(out, cursor::Show).map_err(|e| CleanupError::ShowCursor(e.into()))?;
67
- terminal::disable_raw_mode().map_err(|e| CleanupError::DisableRawMode(e.into()))?;
68
execute!(out, event::DisableMouseCapture)
69
.map_err(|e| CleanupError::DisableMouseCapture(e.into()))?;
+ terminal::disable_raw_mode().map_err(|e| CleanupError::DisableRawMode(e.into()))?;
70
execute!(out, terminal::LeaveAlternateScreen)
71
.map_err(|e| CleanupError::LeaveAlternateScreen(e.into()))?;
72
}
0 commit comments