mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 15:24:05 +00:00
Don't expand symlinks while load dictionaries
This commit is contained in:
parent
76127eb04f
commit
d82320ce0d
|
@ -117,7 +117,7 @@ void LoadDictionaries::handlePath( Config::Path const & path )
|
||||||
for( QFileInfoList::const_iterator i = entries.constBegin();
|
for( QFileInfoList::const_iterator i = entries.constBegin();
|
||||||
i != entries.constEnd(); ++i )
|
i != entries.constEnd(); ++i )
|
||||||
{
|
{
|
||||||
QString fullName = i->canonicalFilePath();
|
QString fullName = i->absoluteFilePath();
|
||||||
|
|
||||||
if ( path.recursive && i->isDir() )
|
if ( path.recursive && i->isDir() )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue