Don't assume there are always matches in outline view

This commit is contained in:
Nathan Sobo 2022-04-06 09:33:47 -06:00
parent 0cbcc81ed9
commit ca64b081fe

View File

@ -276,8 +276,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()));