aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 90391024..c82724a5 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -82,7 +82,7 @@ impl Application {
self.render();
loop {
- if self.editor.should_close {
+ if self.editor.should_close() {
break;
}
@@ -116,9 +116,8 @@ impl Application {
None => panic!(),
};
- if should_redraw {
+ if should_redraw && !self.editor.should_close() {
self.render();
- // calling render twice here fixes it for some reason
}
}