for autoLayoutChildren we also need to polish on LayoutRequest events

This commit is contained in:
Uwe Rathmann 2020-09-04 07:37:16 +02:00
parent 664b141ee4
commit b4e735acce

View File

@ -738,7 +738,10 @@ bool QskControl::event( QEvent* event )
case QEvent::LayoutRequest: case QEvent::LayoutRequest:
{ {
if ( d_func()->autoLayoutChildren ) if ( d_func()->autoLayoutChildren )
{
resetImplicitSize(); resetImplicitSize();
polish();
}
break; break;
} }