workspace: Sanitize pinned tab count before usage (#21417)
Fixes all sorts of panics around usage of incorrect pinned tab count that has been fixed in app itself, yet persists in user db. Closes #ISSUE Release Notes: - N/A
This commit is contained in:
parent
95a047c11b
commit
f32ffcf5bb
2 changed files with 2 additions and 2 deletions
|
@ -473,7 +473,7 @@ impl SerializedPane {
|
|||
})?;
|
||||
}
|
||||
pane.update(cx, |pane, _| {
|
||||
pane.set_pinned_count(self.pinned_count);
|
||||
pane.set_pinned_count(self.pinned_count.min(items.len()));
|
||||
})?;
|
||||
|
||||
anyhow::Ok(items)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue