1
0
Fork 0
forked from len0rd/rockbox

after resizing the theme installation window don't use the scaled image for the real-size popup.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14442 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2007-08-23 17:38:39 +00:00
parent 1152a12d91
commit 0d2ce98a3f

View file

@ -219,7 +219,7 @@ void ThemesInstallWindow::resizeEvent(QResizeEvent* e)
if(p.isNull()) return;
q = p.scaled(img, Qt::KeepAspectRatio, Qt::SmoothTransformation);
ui.themePreview->setScaledContents(false);
ui.themePreview->setPixmap(q);
ui.themePreview->setPixmap(p);
}