Disable selection of non-selected results

Signed-off-by: Justin Georgi <justin.georgi@gmail.com>
This commit is contained in:
2024-01-23 10:33:20 -07:00
parent 39975ec35b
commit 2ba8dc80bc

View File

@@ -544,7 +544,10 @@
r.cvsRight >= e.offsetX &&
r.cvsTop <= e.offsetY &&
r.cvsBottom >= e.offsetY &&
r.resultIndex > this.selectedChip
r.resultIndex > this.selectedChip &&
r.aboveThreshold &&
r.isSearched &&
!r.isDeleted
})
this.selectChip(findBox ? findBox.resultIndex : this.selectedChip)
}