mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-30 06:05:19 +00:00
Don't focus active editor when deploying project search and focus query editor on project search focus
This commit is contained in:
parent
28f44a3252
commit
28da5b4afc
1 changed files with 2 additions and 5 deletions
|
@ -177,11 +177,7 @@ impl View for ProjectSearchView {
|
|||
.insert(self.model.read(cx).project.downgrade(), handle)
|
||||
});
|
||||
|
||||
if self.model.read(cx).match_ranges.is_empty() {
|
||||
cx.focus(&self.query_editor);
|
||||
} else {
|
||||
self.focus_results_editor(cx);
|
||||
}
|
||||
self.focus_query_editor(cx);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -390,6 +386,7 @@ impl ProjectSearchView {
|
|||
|
||||
if let Some(existing) = existing {
|
||||
workspace.activate_item(&existing, cx);
|
||||
existing.update(cx, |existing, cx| existing.focus_query_editor(cx));
|
||||
} else {
|
||||
let model = cx.add_model(|cx| ProjectSearch::new(workspace.project().clone(), cx));
|
||||
workspace.add_item(
|
||||
|
|
Loading…
Reference in a new issue