make-desktopitem: name was being used instead of desktopName

Name should be used as filename and desktopName for the name attribute of the desktop entry (according to docs).
This commit is contained in:
Leon Vack 2020-10-15 14:24:23 +02:00 committed by Leon Vack
parent ee813768c0
commit f275b320d9
No known key found for this signature in database
GPG Key ID: B66DAB934BCECCB7

View File

@ -30,7 +30,7 @@ let
"Icon" = nullableToString icon;
"Comment" = nullableToString comment;
"Terminal" = nullableToString terminal;
"Name" = toString name;
"Name" = toString desktopName;
"GenericName" = nullableToString genericName;
"MimeType" = nullableToString mimeType;
"Categories" = nullableToString categories;