From 5a7a528516e14d48d4da956970613c2a908682de Mon Sep 17 00:00:00 2001 From: Mikayla Maki Date: Wed, 1 Apr 2026 16:46:49 -0700 Subject: [PATCH] Fix worktree picker confirm behavior (#52939) Self-Review Checklist: - [x] I've reviewed my own diff for quality, security, and reliability - [x] Unsafe blocks (if any) have justifying comments - [x] The content is consistent with the [UI/UX checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) - [x] Tests cover the new/changed behavior - [x] Performance impact has been considered and is acceptable Closes #ISSUE Release Notes: - N/A --- crates/git_ui/src/worktree_picker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/git_ui/src/worktree_picker.rs b/crates/git_ui/src/worktree_picker.rs index c3e2259e411c7a3a56a36b92735f8d5e014e53d7..2f600ae4c5620aa0d60cfc96b2d2c767b115f8aa 100644 --- a/crates/git_ui/src/worktree_picker.rs +++ b/crates/git_ui/src/worktree_picker.rs @@ -754,7 +754,7 @@ impl PickerDelegate for WorktreeListDelegate { if entry.is_new { self.create_worktree(&entry.worktree.display_name(), secondary, None, window, cx); } else { - self.open_worktree(&entry.worktree.path, secondary, window, cx); + self.open_worktree(&entry.worktree.path, !secondary, window, cx); } cx.emit(DismissEvent);