Browse Source

Fix typo in violation severity importing

Fixes https://gitlab.com/kicad/code/kicad/-/issues/9092
6.0.7
Jon Evans 4 years ago
parent
commit
6de277c226
  1. 2
      common/dialogs/panel_setup_severities.cpp

2
common/dialogs/panel_setup_severities.cpp

@ -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 );
}
}

Loading…
Cancel
Save