use expandOnly because apparently that leads to higher image quality

This commit is contained in:
RickyRister 2025-02-16 22:58:01 -08:00
parent ee87cdd77e
commit c299cd5872

View file

@ -364,7 +364,7 @@ QPixmap DropdownIconPixmapGenerator::generatePixmap(int height, bool expanded)
return pmCache.value(key);
QString name = expanded ? "dropdown_expanded" : "dropdown_collapsed";
QPixmap pixmap = tryLoadImage("theme:icons/" + name, QSize(height, height));
QPixmap pixmap = tryLoadImage("theme:icons/" + name, QSize(height, height), true);
pmCache.insert(key, pixmap);
return pixmap;