Browse Source

Fix bug in wildcard search handling.

newinvert
Jeff Young 2 years ago
parent
commit
7f453d7943
  1. 2
      common/eda_pattern_match.cpp

2
common/eda_pattern_match.cpp

@ -186,7 +186,7 @@ bool EDA_PATTERN_MATCH_WILDCARD::SetPattern( const wxString& aPattern )
}
}
return EDA_PATTERN_MATCH_REGEX::SetPattern( regex );
return EDA_PATTERN_MATCH_REGEX::SetPattern( wxS( "/" ) + regex + wxS( "/" ) );
}

Loading…
Cancel
Save