Skip to content
Snippets Groups Projects
Commit fae35e2e authored by Jeremy Soller's avatar Jeremy Soller Committed by GitHub
Browse files

Fix RawTerminal drop

parent 011b26b5
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ pub struct RawTerminal<W: Write> { ...@@ -13,7 +13,7 @@ pub struct RawTerminal<W: Write> {
#[cfg(target_os = "redox")] #[cfg(target_os = "redox")]
impl<W: Write> Drop for RawTerminal<W> { impl<W: Write> Drop for RawTerminal<W> {
fn drop(&mut self) { 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