diff options
author | Blaž Hrastnik | 2021-06-03 01:28:49 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-03 01:28:49 +0000 |
commit | c0332bd935bb7c016278d43a526e588558a0cab1 (patch) | |
tree | d7a65b8aef3bde84baa7a39196a089e203f95d2a /helix-view/src/editor.rs | |
parent | 3c7729906c9a677d715f2694c16cd78200691aaf (diff) |
Fix split sizes getting out of sync with the terminal size, refs #69
Diffstat (limited to 'helix-view/src/editor.rs')
-rw-r--r-- | helix-view/src/editor.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index e9f8b5a1..e7b25814 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -194,8 +194,9 @@ impl Editor { } pub fn resize(&mut self, area: Rect) { - self.tree.resize(area); - self._refresh(); + if self.tree.resize(area) { + self._refresh(); + }; } pub fn focus_next(&mut self) { |