remove unnecessary call to reset

This commit is contained in:
rabite 2019-04-15 15:58:55 +02:00
parent 14796f9342
commit 60220eaf1e
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,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<()> {