mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
Fix panic trying to go to next of 0 matches (#13233)
Release Notes: - Fixed a panic when going to next search result when there are none
This commit is contained in:
parent
99e4b3a4cf
commit
5ff7c893be
@ -775,6 +775,7 @@ impl BufferSearchBar {
|
||||
if let Some(matches) = self
|
||||
.searchable_items_with_matches
|
||||
.get(&searchable_item.downgrade())
|
||||
.filter(|matches| !matches.is_empty())
|
||||
{
|
||||
let new_match_index = searchable_item
|
||||
.match_index_for_direction(matches, index, direction, count, cx);
|
||||
|
Loading…
Reference in New Issue
Block a user