Use the last used dxf units selection on dialog open

This commit is contained in:
Marek Roszko 2020-11-22 15:44:36 -05:00
parent 39fe89096e
commit 88bee5e32f
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ DIALOG_IMPORT_GFX::DIALOG_IMPORT_GFX( PCB_BASE_FRAME* aParent, bool aImportAsFoo
for( auto& unitEntry : dxfUnitsMap )
m_choiceDxfUnits->Append( unitEntry.second );
m_choiceDxfUnits->SetSelection( 0 );
m_choiceDxfUnits->SetSelection( m_dxfUnits );
SetInitialFocus( m_textCtrlFileName );
m_sdbSizerOK->SetDefault();