bad blocking of implicitSize change notifications fixed

This commit is contained in:
Uwe Rathmann 2018-01-03 09:22:45 +01:00
parent e37502f454
commit 6a23822f3b

View File

@ -1438,9 +1438,9 @@ void QskControl::updateImplicitSize()
const qreal w = ( hint.width() >= 0 ) ? dw + hint.width() : 0.0;
const qreal h = ( hint.height() >= 0 ) ? dh + hint.height() : 0.0;
d->blockImplicitSizeNotification = false;
setImplicitSize( w, h );
d->blockImplicitSizeNotification = true;
setImplicitSize( w, h );
d->blockImplicitSizeNotification = false;
}
QSizeF QskControl::contentsSizeHint() const