Skip to content
Snippets Groups Projects
Commit 1d63d09e authored by ticki's avatar ticki Committed by GitHub
Browse files

Merge pull request #32 from jackpot51/patch-1

Fix RawTerminal drop
parents 011b26b5 fae35e2e
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ pub struct RawTerminal<W: Write> {
#[cfg(target_os = "redox")]
impl<W: Write> Drop for RawTerminal<W> {
fn drop(&mut self) {
write!(self, csi!("?82h")).unwrap();
write!(self, csi!("?82l")).unwrap();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment