mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-23 04:33:10 +00:00
Merge pull request #81 from ClementTsang/fix_resize_scroll
Fix resizing breaking scrolling
This commit is contained in:
commit
d0bf247291
1 changed files with 2 additions and 0 deletions
|
@ -147,6 +147,8 @@ impl Painter {
|
|||
self.width = current_width;
|
||||
} else if self.height != current_height || self.width != current_width {
|
||||
app_state.is_resized = true;
|
||||
self.height = current_height;
|
||||
self.width = current_width;
|
||||
}
|
||||
|
||||
terminal.autoresize()?;
|
||||
|
|
Loading…
Reference in a new issue