[libcalamaresui] Look up icons via theme
- Don't cache icons, because they could be changed via the active desktop theme.
This commit is contained in:
parent
822bbaad9c
commit
976ad7e3e7
@ -297,16 +297,22 @@ Branding::imagePath( Branding::ImageEntry imageEntry ) const
|
||||
QPixmap
|
||||
Branding::image( Branding::ImageEntry imageEntry, const QSize& size ) const
|
||||
{
|
||||
QPixmap pixmap =
|
||||
ImageRegistry::instance()->pixmap( imagePath( imageEntry ), size );
|
||||
|
||||
if ( pixmap.isNull() )
|
||||
const auto path = imagePath( imageEntry );
|
||||
if ( path.contains( '/' ) )
|
||||
{
|
||||
Q_ASSERT( false );
|
||||
return QPixmap();
|
||||
}
|
||||
QPixmap pixmap = ImageRegistry::instance()->pixmap( path, size );
|
||||
|
||||
Q_ASSERT( !pixmap.isNull() );
|
||||
return pixmap;
|
||||
}
|
||||
else
|
||||
{
|
||||
auto icon = QIcon::fromTheme(path);
|
||||
|
||||
Q_ASSERT( !icon.isNull() );
|
||||
return icon.pixmap( size );
|
||||
}
|
||||
}
|
||||
|
||||
QString
|
||||
Branding::stylesheet() const
|
||||
|
Loading…
Reference in New Issue
Block a user