mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 03:24:49 +00:00
Qt: Use Qt::SmoothTransformation for Cheats Manager (#2450)
This commit is contained in:
parent
0425bd0fd6
commit
e9b44af469
1 changed files with 3 additions and 2 deletions
|
@ -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"));
|
||||
}
|
||||
|
@ -1431,4 +1432,4 @@ void CheatsPatches::onPatchCheckBoxHovered(QCheckBox* checkBox, bool hovered) {
|
|||
} else {
|
||||
instructionsTextEdit->setText(defaultTextEdit_MSG);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue