mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 21:13:02 +00:00
Revert "Focus Project Search query editor always when deployed"
This commit is contained in:
parent
c4e0307c0b
commit
c4203868ea
1 changed files with 5 additions and 2 deletions
|
@ -170,7 +170,11 @@ impl View for ProjectSearchView {
|
|||
.insert(self.model.read(cx).project.downgrade(), handle)
|
||||
});
|
||||
|
||||
self.focus_query_editor(cx);
|
||||
if self.model.read(cx).match_ranges.is_empty() {
|
||||
cx.focus(&self.query_editor);
|
||||
} else {
|
||||
self.focus_results_editor(cx);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -394,7 +398,6 @@ 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