runner: Use larger pixmap
This avoids a low-quality icon being visible in search results lists.
This commit is contained in:
parent
5f886d72cf
commit
2a6c9f7f7c
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ RemoteMatch WindowsRunner::windowsMatch(const Window *window, const WindowsRunne
|
||||||
|
|
||||||
// When there is no icon name, send a pixmap along instead
|
// When there is no icon name, send a pixmap along instead
|
||||||
if (match.iconName.isEmpty()) {
|
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{
|
RemoteImage remoteImage{
|
||||||
convertedImage.width(),
|
convertedImage.width(),
|
||||||
convertedImage.height(),
|
convertedImage.height(),
|
||||||
|
|
Loading…
Reference in a new issue