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