Add Fit() call to move exact and create array dialogs

This commit is contained in:
John Beard 2015-02-12 03:22:24 +00:00
parent 8c6313ac1a
commit d7f96d37a4
2 changed files with 4 additions and 0 deletions

View File

@ -110,6 +110,8 @@ DIALOG_CREATE_ARRAY::DIALOG_CREATE_ARRAY( PCB_BASE_FRAME* aParent, wxPoint aOrig
// Run the callbacks once to process the dialog contents
setControlEnablement();
calculateCircularArrayProperties();
Fit();
}

View File

@ -54,6 +54,8 @@ DIALOG_MOVE_EXACT::DIALOG_MOVE_EXACT( PCB_BASE_FRAME* aParent,
m_xEntry->SetValue( wxString::FromDouble( m_options.entry1 ) );
m_yEntry->SetValue( wxString::FromDouble( m_options.entry2 ) );
m_rotEntry->SetValue( wxString::FromDouble( m_options.entryRotation ) );
Fit();
}