Fix desktop file display name
This commit is contained in:
parent
94ecc56617
commit
7551ff92b9
1 changed files with 3 additions and 1 deletions
|
@ -248,7 +248,9 @@ QVariant FolderModel::data(const QModelIndex &index, int role) const
|
|||
case DisplayNameRole: {
|
||||
if (item.isDesktopFile()) {
|
||||
KDesktopFile dfile(item.localPath());
|
||||
return dfile.readName();
|
||||
|
||||
if (!dfile.readName().isEmpty())
|
||||
return dfile.readName();
|
||||
}
|
||||
|
||||
return item.url().fileName();
|
||||
|
|
Loading…
Reference in a new issue