runner: Use larger pixmap

This avoids a low-quality icon being visible in search results lists.
This commit is contained in:
Oliver Beard 2022-09-12 22:24:03 +00:00 committed by Nate Graham
parent 5f886d72cf
commit 2a6c9f7f7c

View file

@ -279,7 +279,7 @@ RemoteMatch WindowsRunner::windowsMatch(const Window *window, const WindowsRunne
// When there is no icon name, send a pixmap along instead
if (match.iconName.isEmpty()) {
QImage convertedImage = window->icon().pixmap(QSize(16, 16)).toImage().convertToFormat(QImage::Format_RGBA8888);
QImage convertedImage = window->icon().pixmap(QSize(64, 64)).toImage().convertToFormat(QImage::Format_RGBA8888);
RemoteImage remoteImage{
convertedImage.width(),
convertedImage.height(),