|
|
@ -311,7 +311,6 @@ impl Application {
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
pub async fn handle_signals(&mut self, signal: i32) {
|
|
|
|
pub async fn handle_signals(&mut self, signal: i32) {
|
|
|
|
use helix_view::graphics::Rect;
|
|
|
|
|
|
|
|
match signal {
|
|
|
|
match signal {
|
|
|
|
signal::SIGTSTP => {
|
|
|
|
signal::SIGTSTP => {
|
|
|
|
self.compositor.save_cursor();
|
|
|
|
self.compositor.save_cursor();
|
|
|
@ -321,8 +320,6 @@ impl Application {
|
|
|
|
signal::SIGCONT => {
|
|
|
|
signal::SIGCONT => {
|
|
|
|
self.claim_term().await.unwrap();
|
|
|
|
self.claim_term().await.unwrap();
|
|
|
|
// redraw the terminal
|
|
|
|
// redraw the terminal
|
|
|
|
let Rect { width, height, .. } = self.compositor.size();
|
|
|
|
|
|
|
|
self.compositor.resize(width, height);
|
|
|
|
|
|
|
|
self.compositor.load_cursor();
|
|
|
|
self.compositor.load_cursor();
|
|
|
|
self.render();
|
|
|
|
self.render();
|
|
|
|
}
|
|
|
|
}
|
|
|
|