Unnamed repository; edit this file 'description' to name the repository.
Fix code after rebase
Blaž Hrastnik 2022-05-01
parent 9dd9515 · commit 18381fc
-rw-r--r--helix-term/src/application.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index cad94e97..5913f971 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -364,7 +364,6 @@ impl Application {
#[cfg(not(windows))]
pub async fn handle_signals(&mut self, signal: i32) {
- use helix_view::graphics::Rect;
match signal {
signal::SIGTSTP => {
self.restore_term().unwrap();
@@ -373,8 +372,11 @@ impl Application {
signal::SIGCONT => {
self.claim_term().await.unwrap();
// redraw the terminal
- let area = self.compositor.size();
- self.compositor.resize(area);
+ let area = self
+ .terminal
+ .size()
+ .expect("Unable to determine terminal size");
+ self.terminal.resize(area);
self.render();
}
_ => unreachable!(),