PANEL_SYM_EDITING_OPTIONS: Fix a focus event issue (perhaps platform specific)

This commit is contained in:
jean-pierre charras 2023-07-02 19:46:56 +02:00
parent ec9b2919ba
commit f5d7edaa73
1 changed files with 2 additions and 0 deletions

View File

@ -99,6 +99,8 @@ void PANEL_SYM_EDITING_OPTIONS::onKillFocusPinPitch( wxFocusEvent& aEvent )
pitch_mils = KiROUND( double( pitch_mils ) / MIN_GRID ) * MIN_GRID;
m_pinPitch.SetValue( schIUScale.MilsToIU( pitch_mils ) );
aEvent.Skip();
}