Skip to content

Commit

Permalink
fix(tab): recover from crash when resizing panes (#3659)
Browse files Browse the repository at this point in the history
  • Loading branch information
imsnif authored Oct 10, 2024
1 parent 8c3bca5 commit e3aeac6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zellij-server/src/tab/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2343,7 +2343,7 @@ impl Tab {
))
.with_context(err_context)?;
},
_ => Err::<(), _>(err).fatal(),
_ => Err::<(), _>(err).non_fatal(),
},
}
}
Expand Down Expand Up @@ -4311,7 +4311,7 @@ impl Tab {
))
.with_context(err_context)?;
},
_ => Err::<(), _>(err).fatal(),
_ => Err::<(), _>(err).non_fatal(),
},
}
} else if self
Expand Down

0 comments on commit e3aeac6

Please sign in to comment.