wrong update check fixed

This commit is contained in:
Uwe Rathmann 2022-12-06 16:31:58 +01:00
parent a2e29e0d16
commit 3bab38029d

View File

@ -83,7 +83,7 @@ void QskBoxFillNode::updateNode(
}
const auto metricsHash = qskMetricsHash( shapeMetrics, borderMetrics );
const bool dirtyGeometry = ( metricsHash != d->metricsHash ) || ( rect == d->rect );
const bool dirtyGeometry = ( metricsHash != d->metricsHash ) || ( rect != d->rect );
d->metricsHash = metricsHash;
d->rect = rect;