mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
Merge pull request #1671 from xiaoyifang/fix/mdx-title
fix:mdx dictionary make issue compatibility
This commit is contained in:
commit
ddddb705b2
|
@ -372,7 +372,7 @@ bool MdictParser::readHeader( QDataStream & in )
|
|||
// Read metadata
|
||||
rtl_ = headerAttributes.namedItem( "Left2Right" ).toAttr().value() != "Yes";
|
||||
QString title = headerAttributes.namedItem( "Title" ).toAttr().value();
|
||||
if ( title.isEmpty() ) {
|
||||
if ( title.isEmpty() || title == "Title (No HTML code allowed)" ) {
|
||||
// Use filename instead
|
||||
QFileInfo fi( filename_ );
|
||||
title_ = fi.baseName();
|
||||
|
|
Loading…
Reference in a new issue