From b6ed3b258c9cc4d5aa9c49b75b052dfefee61072 Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Mon, 4 Dec 2023 11:32:14 -0500 Subject: [PATCH] Remove debug Co-Authored-By: Marshall Bowers <1486634+maxdeviant@users.noreply.github.com> --- crates/workspace2/src/pane.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crates/workspace2/src/pane.rs b/crates/workspace2/src/pane.rs index b4d0bc4790..438ad39693 100644 --- a/crates/workspace2/src/pane.rs +++ b/crates/workspace2/src/pane.rs @@ -1555,12 +1555,6 @@ impl Pane { } fn render_tab_bar(&mut self, cx: &mut ViewContext<'_, Pane>) -> impl IntoElement { - dbg!(format!( - "Can navigate forwards: {}, can navigate backwards: {}", - self.can_navigate_forward(), - self.can_navigate_backward() - )); - div() .id("tab_bar") .group("tab_bar")