Allow to rescale airline icons (actually all icons)

This commit is contained in:
Klaus Basan
2019-05-13 10:58:37 +02:00
parent e3dceccefd
commit e8b57f8bef
4 changed files with 56 additions and 10 deletions

View File

@@ -64,11 +64,11 @@ namespace BlackMisc
{
if (this->isGenerated()) { return m_pixmap; }
if (this->isFileBased()) { return m_pixmap; }
return CIcons::pixmapByIndex(getIndex(), m_rotateDegrees);
return CIcons::pixmapByIndex(this->getIndex(), m_rotateDegrees);
}
else
{
return CIcons::pixmapByIndex(getIndex());
return CIcons::pixmapByIndex(this->getIndex());
}
}