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).
gstqt5
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
1 changed files with 1 additions and 1 deletions

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;