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 ) )
{
tokens = wxT( "Dimension|"
tokens = wxT( "Bitmap|"
"Dimension|"
"Footprint|"
"Graphic|"
"Group|"
@ -490,6 +491,7 @@ void PANEL_SETUP_RULES::onScintillaCharAdded( wxStyledTextEvent &aEvent )
"Pad|"
"Target|"
"Text|"
"Text Box|"
"Track|"
"Via|"
"Zone" );