fix(tab): recover from crash when resizing panes (#3659)
This commit is contained in:
parent
8c3bca5695
commit
e3aeac63d3
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Reference in a new issue