Fix double call of TransfertDataToWindows in dialog_print_for_modedit.cpp

This commit is contained in:
jean-pierre charras 2016-07-04 17:19:59 +02:00
parent 474e0936cb
commit ed7c57f19f
1 changed files with 1 additions and 2 deletions

View File

@ -74,11 +74,10 @@ private:
void OnInitDlg( wxInitDialogEvent& event )
{
// Call the default wxDialog handler of a wxInitDialogEvent
TransferDataToWindow();
event.Skip();
// Now all widgets have the size fixed, call FinishDialogSettings
FinishDialogSettings();
event.Skip();
}
void InitValues( );