QPA/Windows: Avoid confusing warning about empty QPixmap
A drag'n'drop operation on a screen with a dpr != 1 tries to scale the (optional) QDrag pixmap. This results in a confusing warning "QPixmap::scaleWidth: Pixmap is a null pixmap". Avoid it by checking if there is a pixmap available before trying to scale it. Fixes: QTBUG-122755 Pick-to: 6.5 Change-Id: I554675b79840e34ddd3f53153b68e913fd333122 Reviewed-by: Oliver Wolff <oliver.wolff@qt.io> (cherry picked from commit db328ca975bc63f3baf3d021dcff1ea37fa6b6a0) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
369290d639
commit
817404e396
@ -272,7 +272,7 @@ void QWindowsOleDropSource::createCursors()
|
||||
hotSpotScaleFactor = QHighDpiScaling::factor(platformScreen);
|
||||
pixmapScaleFactor = hotSpotScaleFactor / pixmap.devicePixelRatio();
|
||||
}
|
||||
QPixmap scaledPixmap = qFuzzyCompare(pixmapScaleFactor, 1.0)
|
||||
QPixmap scaledPixmap = (hasPixmap && qFuzzyCompare(pixmapScaleFactor, 1.0))
|
||||
? pixmap
|
||||
: pixmap.scaled((QSizeF(pixmap.size()) * pixmapScaleFactor).toSize(),
|
||||
Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
||||
|
Loading…
x
Reference in New Issue
Block a user