Qt: Use Qt::SmoothTransformation for Cheats Manager

This commit is contained in:
¥IGA 2025-02-15 15:59:55 +01:00 committed by Xphalnos
parent bdf4a5249d
commit efa1ce5ee7

View File

@ -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"));
}