Fix desktop file display name

pull/36/head
kateleet 4 years ago
parent 94ecc56617
commit 7551ff92b9

@ -248,6 +248,8 @@ QVariant FolderModel::data(const QModelIndex &index, int role) const
case DisplayNameRole: {
if (item.isDesktopFile()) {
KDesktopFile dfile(item.localPath());
if (!dfile.readName().isEmpty())
return dfile.readName();
}

Loading…
Cancel
Save