SVG icon theme: use raster pixmap in tree views on Windows as workaround

Apply Windows workaround for icon sizes for the "file type" icon if
color-coding files is off, too.

Part of the fix of #3335.
This commit is contained in:
Moritz Bunkus 2022-04-24 20:39:13 +02:00
parent 5d20c60525
commit 84492b7399
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85

View File

@ -34,7 +34,7 @@ createSourceIndicatorIcon(SourceFile &sourceFile) {
auto icon = QIcon::fromTheme(iconName);
if (!Util::Settings::get().m_mergeUseFileAndTrackColors)
return icon;
return Util::fixStandardItemIcon(icon);
auto color = Util::Settings::get().nthFileColor(sourceFile.m_colorIndex);