Allow others to also process units changed event.

Fixes https://gitlab.com/kicad/code/kicad/issues/14156
This commit is contained in:
Jeff Young 2023-03-05 16:05:56 +00:00
parent 2994fa26cd
commit 6a5f305684
1 changed files with 2 additions and 0 deletions

View File

@ -561,6 +561,8 @@ void PANEL_PREVIEW_3D_MODEL::onUnitsChanged( wxCommandEvent& aEvent )
xoff->SetValue( formatOffsetValue( xoff_mm ) );
yoff->SetValue( formatOffsetValue( yoff_mm ) );
zoff->SetValue( formatOffsetValue( zoff_mm ) );
aEvent.Skip();
}