Resize is not necessary inside SIGCONT, handled by render()

pull/1872/head
Blaž Hrastnik 2 years ago
parent 7b3a3d562c
commit 85264a861a
No known key found for this signature in database
GPG Key ID: 1238B9C4AD889640

@ -311,7 +311,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.compositor.save_cursor();
@ -321,8 +320,6 @@ impl Application {
signal::SIGCONT => {
self.claim_term().await.unwrap();
// redraw the terminal
let Rect { width, height, .. } = self.compositor.size();
self.compositor.resize(width, height);
self.compositor.load_cursor();
self.render();
}

Loading…
Cancel
Save