mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
fix: mdx title should be respected
This commit is contained in:
parent
2053511856
commit
ca4d59b306
|
@ -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() || title.length() < 5 || title == "Title (No HTML code allowed)" ) {
|
||||
if ( title.isEmpty() ) {
|
||||
// Use filename instead
|
||||
QFileInfo fi( filename_ );
|
||||
title_ = fi.baseName();
|
||||
|
|
Loading…
Reference in a new issue