Rescale album art when heigt is greater than 1000px, too.

This commit is contained in:
Andreas 2013-06-01 13:52:39 +02:00
parent 1a4e4ba86f
commit 20e1f1b3d6
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ void OutgoingDataCreator::CreateSong(
if (!art.isNull()) {
QImage small;
// Check if we resize the image
if (art.width() > 1000) {
if (art.width() > 1000 || art.height() > 1000) {
small = art.scaled(1000, 1000, Qt::KeepAspectRatio);
} else {
small = art;