Skip to content

Commit

Permalink
Update mux/src/domain.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Wez Furlong <[email protected]>
  • Loading branch information
scauligi and wez committed Sep 18, 2024
1 parent e27040f commit a1dbddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mux/src/domain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub trait Domain: Downcast + Send + Sync {
None => anyhow::bail!("Invalid tab id {}", tab),
};

let mut pane_index = match tab
let pane_index = match tab
.iter_panes_ignoring_zoom()
.iter()
.find(|p| p.pane.pane_id() == pane_id)
Expand Down

0 comments on commit a1dbddd

Please sign in to comment.