mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-24 19:10:24 +00:00
Merge pull request #748 from zed-industries/fix-outline-panic
Don't assume there are always matches in outline view
This commit is contained in:
commit
7c21b61ad9
1 changed files with 2 additions and 2 deletions
|
@ -277,8 +277,8 @@ impl OutlineView {
|
|||
(ix, depth, distance_to_closest_endpoint)
|
||||
})
|
||||
.max_by_key(|(_, depth, distance)| (*depth, Reverse(*distance)))
|
||||
.unwrap()
|
||||
.0;
|
||||
.map(|(ix, _, _)| ix)
|
||||
.unwrap_or(0);
|
||||
navigate_to_selected_index = false;
|
||||
} else {
|
||||
self.matches = smol::block_on(self.outline.search(&query, cx.background().clone()));
|
||||
|
|
Loading…
Reference in a new issue