Add missing DRC Type suggestions.

This commit is contained in:
Alex 2023-01-22 21:44:27 +03:00
parent 1551477f00
commit 05eafdc08b
1 changed files with 3 additions and 1 deletions

View File

@ -482,7 +482,8 @@ void PANEL_SETUP_RULES::onScintillaCharAdded( wxStyledTextEvent &aEvent )
} }
else if( m_typeRegex.Matches( last ) ) else if( m_typeRegex.Matches( last ) )
{ {
tokens = wxT( "Dimension|" tokens = wxT( "Bitmap|"
"Dimension|"
"Footprint|" "Footprint|"
"Graphic|" "Graphic|"
"Group|" "Group|"
@ -490,6 +491,7 @@ void PANEL_SETUP_RULES::onScintillaCharAdded( wxStyledTextEvent &aEvent )
"Pad|" "Pad|"
"Target|" "Target|"
"Text|" "Text|"
"Text Box|"
"Track|" "Track|"
"Via|" "Via|"
"Zone" ); "Zone" );