ncols = m_cols;
nrows = m_rows;
- wxASSERT_MSG( ncols*nrows <= nitems, "too many items in grid sizer" );
+ wxASSERT_MSG( ncols*nrows >= nitems, "too many items in grid sizer" );
}
else if ( m_cols )
{
}
// NB: wxCENTRE is used here only for backwards compatibility,
// wxALIGN_CENTRE should be used in new code
- else if ( flag & (wxCENTER | wxALIGN_CENTRE) )
+ else if ( flag & (wxCENTER | (IsVertical() ? wxALIGN_CENTRE_HORIZONTAL : wxALIGN_CENTRE_VERTICAL)))
{
PosInMinorDir(posChild) += (totalMinorSize - minorSize) / 2;
}