Bug - Fixed Undesirable Fuzzy Matches

jasonharper

Developer
Ooh, that was a tricky one - search strings containing a space could never fuzzy-match an item with no spaces in its name, due to an optimization to skip expensive matching operations against items that don't contain every character in the search string. That's appropriate for all other characters, and for the initial attempt at a substring match, but when fuzzy matching a space is no longer a significant character. Fixed in r8324.
 
Top