Don't double-quote command when rewriting desktop files

tingping/wmclass
Alexander Larsson 2015-02-13 11:45:13 +01:00
parent 2cacc3a67a
commit bcf2b13279
1 changed files with 1 additions and 1 deletions

View File

@ -557,7 +557,7 @@ export_desktop_file (const char *app,
int i;
gs_free char *command = g_shell_quote (old_argv[0]);
g_string_append_printf (new_exec, " --command='%s'", command);
g_string_append_printf (new_exec, " --command=%s", command);
g_string_append (new_exec, " ");
g_string_append (new_exec, escaped_app);