Skip to content

Commit

Permalink
Remove extra dbg!'s
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneToIgnore committed Jan 5, 2024
1 parent eceed71 commit bf11a04
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions crates/workspace/src/pane.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1128,12 +1128,7 @@ impl Pane {
if self.items.len() == 1 && should_activate {
self.focus_handle.focus(cx);
} else {
self.activate_item(
dbg!(index_to_activate),
dbg!(should_activate),
should_activate,
cx,
);
self.activate_item(index_to_activate, should_activate, should_activate, cx);
}
}

Expand Down

0 comments on commit bf11a04

Please sign in to comment.