mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
guard against null img for ZIM
This commit is contained in:
parent
1a0a9ca097
commit
a76ef3dfdd
|
@ -290,7 +290,14 @@ void ZimDictionary::loadIcon() noexcept
|
|||
try {
|
||||
auto illustration = df.getIllustrationItem( 48 ).getData();
|
||||
QImage img = QImage::fromData( reinterpret_cast< const uchar * >( illustration.data() ), illustration.size() );
|
||||
dictionaryIcon = QIcon( QPixmap::fromImage( img ) );
|
||||
|
||||
if ( img.isNull() ) {
|
||||
// Fallback to default icon
|
||||
dictionaryIcon = QIcon( ":/icons/icon32_zim.png" );
|
||||
}
|
||||
else {
|
||||
dictionaryIcon = QIcon( QPixmap::fromImage( img ) );
|
||||
}
|
||||
|
||||
dictionaryIconLoaded = true;
|
||||
return;
|
||||
|
@ -298,11 +305,6 @@ void ZimDictionary::loadIcon() noexcept
|
|||
catch ( zim::EntryNotFound & e ) {
|
||||
gdDebug( "ZIM icon not loaded for: %s", dictionaryName.c_str() );
|
||||
}
|
||||
|
||||
// Fallback to default icon
|
||||
dictionaryIcon = QIcon( ":/icons/icon32_zim.png" );
|
||||
|
||||
dictionaryIconLoaded = true;
|
||||
}
|
||||
|
||||
quint32 ZimDictionary::loadArticle( quint32 address, string & articleText, bool rawText )
|
||||
|
|
Loading…
Reference in a new issue