7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:05:30 +00:00

Search all fields, hidden or not.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/20370
This commit is contained in:
Jeff Young 2025-03-19 08:55:01 +00:00
parent 0a3ddd33ee
commit b4640cdc55

View File

@ -175,6 +175,7 @@ int SYMBOL_SEARCH_HANDLER::Search( const wxString& aQuery )
m_hitlist.clear();
SCH_SEARCH_DATA frp;
frp.searchAllFields = true;
frp.findString = aQuery;
// Try to handle whatever the user throws at us (substring, wildcards, regex, etc.)
@ -256,6 +257,7 @@ int POWER_SEARCH_HANDLER::Search( const wxString& aQuery )
m_hitlist.clear();
SCH_SEARCH_DATA frp;
frp.searchAllFields = true;
frp.findString = aQuery;
// Try to handle whatever the user throws at us (substring, wildcards, regex, etc.)
@ -327,6 +329,7 @@ int TEXT_SEARCH_HANDLER::Search( const wxString& aQuery )
m_hitlist.clear();
SCH_SEARCH_DATA frp;
frp.searchAllFields = true;
frp.findString = aQuery;
// Try to handle whatever the user throws at us (substring, wildcards, regex, etc.)
@ -411,6 +414,7 @@ int LABEL_SEARCH_HANDLER::Search( const wxString& aQuery )
m_hitlist.clear();
SCH_SEARCH_DATA frp;
frp.searchAllFields = true;
frp.findString = aQuery;
// Try to handle whatever the user throws at us (substring, wildcards, regex, etc.)