fix(tab): recover from crash when resizing panes (#3659)

This commit is contained in:
Aram Drevekenin 2024-10-10 15:04:38 +02:00 committed by GitHub
parent 8c3bca5695
commit e3aeac63d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2343,7 +2343,7 @@ impl Tab {
)) ))
.with_context(err_context)?; .with_context(err_context)?;
}, },
_ => Err::<(), _>(err).fatal(), _ => Err::<(), _>(err).non_fatal(),
}, },
} }
} }
@ -4311,7 +4311,7 @@ impl Tab {
)) ))
.with_context(err_context)?; .with_context(err_context)?;
}, },
_ => Err::<(), _>(err).fatal(), _ => Err::<(), _>(err).non_fatal(),
}, },
} }
} else if self } else if self