Merge pull request #1383 from DarkLordZach/game-list-interpolation

game_list: Add Qt SmoothTransformation to picture scaling
This commit is contained in:
James Rowe 2018-09-21 20:55:49 -06:00 committed by GitHub
commit 37bb2c45ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,7 +68,7 @@ public:
if (!picture.loadFromData(picture_data.data(), static_cast<u32>(picture_data.size()))) {
picture = GetDefaultIcon(size);
}
picture = picture.scaled(size, size);
picture = picture.scaled(size, size, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
setData(picture, Qt::DecorationRole);
}