mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-22 04:33:22 +03:00
fix(tab): recover from crash when resizing panes (#3659)
This commit is contained in:
parent
8c3bca5695
commit
e3aeac63d3
@ -2343,7 +2343,7 @@ impl Tab {
|
||||
))
|
||||
.with_context(err_context)?;
|
||||
},
|
||||
_ => Err::<(), _>(err).fatal(),
|
||||
_ => Err::<(), _>(err).non_fatal(),
|
||||
},
|
||||
}
|
||||
}
|
||||
@ -4311,7 +4311,7 @@ impl Tab {
|
||||
))
|
||||
.with_context(err_context)?;
|
||||
},
|
||||
_ => Err::<(), _>(err).fatal(),
|
||||
_ => Err::<(), _>(err).non_fatal(),
|
||||
},
|
||||
}
|
||||
} else if self
|
||||
|
Loading…
Reference in New Issue
Block a user