mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-04 16:32:39 +00:00
Qt: Use Qt::SmoothTransformation for Cheats Manager
This commit is contained in:
parent
bdf4a5249d
commit
efa1ce5ee7
@ -71,7 +71,8 @@ void CheatsPatches::setupUI() {
|
||||
|
||||
QLabel* gameImageLabel = new QLabel();
|
||||
if (!m_gameImage.isNull()) {
|
||||
gameImageLabel->setPixmap(m_gameImage.scaled(275, 275, Qt::KeepAspectRatio));
|
||||
gameImageLabel->setPixmap(
|
||||
m_gameImage.scaled(275, 275, Qt::KeepAspectRatio, Qt::SmoothTransformation));
|
||||
} else {
|
||||
gameImageLabel->setText(tr("No Image Available"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user