summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
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<std::io::Stdout> {
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();
}
}