Fix split sizes getting out of sync with the terminal size, refs #69

This commit is contained in:
Blaž Hrastnik 2021-06-03 10:28:49 +09:00
parent 3c7729906c
commit c0332bd935
6 changed files with 33 additions and 12 deletions

View file

@ -137,12 +137,12 @@ where
}
/// Queries the backend for size and resizes if it doesn't match the previous size.
pub fn autoresize(&mut self) -> io::Result<()> {
pub fn autoresize(&mut self) -> io::Result<Rect> {
let size = self.size()?;
if size != self.viewport.area {
self.resize(size)?;
};
Ok(())
Ok(size)
}
/// Synchronizes terminal size, calls the rendering closure, flushes the current internal state