From 40d3c79f2f997ac5611975a27cc15d016ff600fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa=20Craig?= Date: Tue, 19 May 2026 17:05:13 -0300 Subject: [PATCH] Update workspace mentions in the sidebar (#54833) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces "workspace" labels in the sidebar with more accurate terminology: - "Focus Last Workspace" → "Focus Last Project" - "Focus Workspace" → "Focus Project" - "Close Workspace" tooltip → "Close Worktree" Release Notes: - N/A --- crates/sidebar/src/sidebar.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/sidebar/src/sidebar.rs b/crates/sidebar/src/sidebar.rs index a86960f3fb5..7fcaf38a3f5 100644 --- a/crates/sidebar/src/sidebar.rs +++ b/crates/sidebar/src/sidebar.rs @@ -2276,9 +2276,9 @@ impl Sidebar { .child(Label::new("-click").color(Color::Muted)); let label = if has_threads { - "Focus Last Workspace" + "Focus Last Project" } else { - "Focus Workspace" + "Focus Project" }; h_flex() @@ -2390,7 +2390,7 @@ impl Sidebar { ) .icon_size(IconSize::Small) .visible_on_hover(&row_group_name) - .tooltip(Tooltip::text("Close Workspace")) + .tooltip(Tooltip::text("Close Worktree")) .on_click(move |_, window, cx| { cx.stop_propagation(); window.prevent_default();