diff --git a/ui/src/lib.rs b/ui/src/lib.rs index 669a8fe5..76af9dca 100644 --- a/ui/src/lib.rs +++ b/ui/src/lib.rs @@ -252,7 +252,7 @@ impl State { s.lock(); self.stdout = Some(AlternateScreen::from(s.into_raw_mode().unwrap())); - write!(self.stdout(), "{}", termion::screen::ToAlternateScreen).unwrap(); + write!(self.stdout(), "{}{}", termion::screen::ToAlternateScreen, cursor::Hide).unwrap(); self.flush(); } }