diff --git a/crates/agent_ui/src/agent_panel.rs b/crates/agent_ui/src/agent_panel.rs index af521e3d2764af435a53c9b2d297ad182e6f0e6c..58d547cb7ff165d0b77576d220399dc0f57f903c 100644 --- a/crates/agent_ui/src/agent_panel.rs +++ b/crates/agent_ui/src/agent_panel.rs @@ -3512,7 +3512,10 @@ impl AgentPanel { if !paths_to_open.is_empty() { let open_task = workspace.open_paths( paths_to_open, - workspace::OpenOptions::default(), + workspace::OpenOptions { + focus: Some(false), + ..Default::default() + }, None, window, cx,