PCM: call finishDialogSettings(); to run sizer final calculations in dialogs

This commit is contained in:
jean-pierre charras 2021-11-13 15:21:43 +01:00
parent d87bfc7103
commit b3d44515c9
2 changed files with 6 additions and 0 deletions

View File

@ -48,6 +48,9 @@ DIALOG_MANAGE_REPOSITORIES::DIALOG_MANAGE_REPOSITORIES(
// Set the minimal width to the column label size.
m_grid->SetColMinimalWidth( col, headingWidth );
}
// fix sizers now widgets are set.
finishDialogSettings();
}

View File

@ -153,6 +153,9 @@ DIALOG_PCM::DIALOG_PCM( wxWindow* parent ) : DIALOG_PCM_BASE( parent )
// Set the minimal width to the column label size.
m_gridPendingActions->SetColMinimalWidth( col, headingWidth );
}
// fix sizers now widgets are set.
finishDialogSettings();
}