readded call to reset on quit

This commit is contained in:
rabite 2019-05-06 19:23:06 +02:00
parent cec03fce88
commit ba6a69a4c0
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ impl Screen {
self.screen.lock().map(|mut screen| std::mem::drop(screen.take())).ok();
// Terminal stays fucked without this. Why?
//Ok(std::process::Command::new("reset").arg("-I").spawn()).log();
Ok(std::process::Command::new("reset").arg("-I").spawn()).log();
}
pub fn reset_screen(&mut self) -> HResult<()> {