Revert "fix: wrong order of arguments in QImage()"

This reverts commit 849159d5
This commit is contained in:
vae 2021-05-09 04:16:58 +03:00
parent 8d88aa5d09
commit 0c93aa55f7
1 changed files with 1 additions and 1 deletions

View File

@ -522,7 +522,7 @@ void expblur(QImage &img, qreal radius, bool improvedQuality = false, int transp
qt_blurrow<aprec, zprec, alphaOnly>(img, row, alpha);
}
QImage temp(img.width(), img.height(), img.format());
QImage temp(img.height(), img.width(), img.format());
temp.setDevicePixelRatio(img.devicePixelRatioF());
if (transposed >= 0) {
if (img.depth() == 8) {