Fix typo in violation severity importing

Fixes https://gitlab.com/kicad/code/kicad/-/issues/9092
This commit is contained in:
Jon Evans 2021-09-04 12:20:36 -04:00
parent a397e85589
commit 6de277c226
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ void PANEL_SETUP_SEVERITIES::ImportSettingsFrom( std::map<int, SEVERITY>& aSetti
int newSeverity = aSettings[ pinMapCode ];
m_buttonMap[ pinMapCode ][0]->SetValue( newSeverity != RPT_SEVERITY_IGNORE );
m_buttonMap[ pinMapCode ][1]->SetValue( newSeverity == RPT_SEVERITY_IGNORE );
m_buttonMap[ pinMapCode ][2]->SetValue( newSeverity == RPT_SEVERITY_IGNORE );
}
}