mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
Fix show of abbreviations in XDXF dictionaries (issue #116).
This commit is contained in:
parent
c79899f916
commit
c8c284c694
|
@ -160,6 +160,7 @@ div.xdxf
|
|||
{
|
||||
font-style: italic;
|
||||
color: green;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* Color-highlighted */
|
||||
|
|
|
@ -179,7 +179,7 @@ string convert( string const & in, DICT_TYPE type, map < string, string > const
|
|||
}
|
||||
else
|
||||
title = i->second;
|
||||
el.setAttribute( "title", title.c_str() );
|
||||
el.setAttribute( "title", gd::toQString( Utf8::decode( title ) ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue