X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fplayermainwindow.cpp;h=8e16fcc8d8d3feea2258cb6b72b5c53c557c9cd0;hb=dc195f78fca4d9257063c2e4a3a5236e5287baeb;hp=f5b5d5518f199262e433f579979e7040be2b01a3;hpb=1c8416e8195aa35821dfce04e1c03f63673ce766;p=vlc-remote diff --git a/src/playermainwindow.cpp b/src/playermainwindow.cpp index f5b5d55..8e16fcc 100644 --- a/src/playermainwindow.cpp +++ b/src/playermainwindow.cpp @@ -564,7 +564,7 @@ QPixmap* image = new QPixmap(); if (image->loadFromData(data)) { mHasImage = true; - ui->labelArtLandscape->setPixmap(image->scaledToHeight(120, Qt::SmoothTransformation)); + ui->labelArtLandscape->setPixmap(image->scaledToHeight(160, Qt::SmoothTransformation)); ui->labelArtPortrait->setPixmap(image->scaledToHeight(310, Qt::SmoothTransformation)); if (mIsLandscape) { ui->labelArtPortrait->setVisible(false); @@ -585,8 +585,8 @@ } void PlayerMainWindow::setCoverArtFromPixmap(QPixmap image) { mHasImage = true; - ui->labelArtLandscape->setPixmap(image.scaledToHeight(120, Qt::SmoothTransformation)); - ui->labelArtPortrait->setPixmap(image.scaledToHeight(320, Qt::SmoothTransformation)); + ui->labelArtLandscape->setPixmap(image.scaledToHeight(160, Qt::SmoothTransformation)); + ui->labelArtPortrait->setPixmap(image.scaledToHeight(310, Qt::SmoothTransformation)); if (mIsLandscape) { ui->labelArtPortrait->setVisible(false); ui->labelArtLandscape->setVisible(true);