PCM: call finishDialogSettings(); to run sizer final calculations in dialogs
This commit is contained in:
parent
d87bfc7103
commit
b3d44515c9
|
@ -48,6 +48,9 @@ DIALOG_MANAGE_REPOSITORIES::DIALOG_MANAGE_REPOSITORIES(
|
||||||
// Set the minimal width to the column label size.
|
// Set the minimal width to the column label size.
|
||||||
m_grid->SetColMinimalWidth( col, headingWidth );
|
m_grid->SetColMinimalWidth( col, headingWidth );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fix sizers now widgets are set.
|
||||||
|
finishDialogSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -153,6 +153,9 @@ DIALOG_PCM::DIALOG_PCM( wxWindow* parent ) : DIALOG_PCM_BASE( parent )
|
||||||
// Set the minimal width to the column label size.
|
// Set the minimal width to the column label size.
|
||||||
m_gridPendingActions->SetColMinimalWidth( col, headingWidth );
|
m_gridPendingActions->SetColMinimalWidth( col, headingWidth );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fix sizers now widgets are set.
|
||||||
|
finishDialogSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue