Fix regression for "Open with --> Other Application --> Custom Command" #425
1 unresolved thread
Merge request reports
Activity
mentioned in issue #425 (closed)
842 841 if (gtk_dialog_run (GTK_DIALOG (chooser)) == GTK_RESPONSE_ACCEPT) 843 842 { 844 843 filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (chooser)); 845 gtk_entry_set_text (GTK_ENTRY (dialog->custom_entry), filename); 844 filename_quoted = g_strconcat ("'", filename, "'", NULL); I as well tried
g_uri_escape_string (filename,"/",TRUE);
, though that did not work well withg_app_info_create_from_commandline
because the latter requires some very special escaping, like told in the gtk doc.Edited by Alexander Schwinnchanged this line in version 2 of the diff
added 17 commits
-
1461fa57...79ae4082 - 15 commits from branch
xfce:master
- f633092c - Remove hidden quotes for "Open with"->"custom command" (Issue #425 (closed))
- ae5185c1 - Escape all whitespace characters in custom command path
-
1461fa57...79ae4082 - 15 commits from branch
added 5 commits
-
ae5185c1...f6cc4929 - 3 commits from branch
xfce:master
- 85145809 - Remove hidden quotes for "Open with"->"custom command" (Issue #425 (closed))
- 7316aaba - Escape all whitespace characters in custom command path
-
ae5185c1...f6cc4929 - 3 commits from branch
enabled an automatic merge when the pipeline for 7316aaba succeeds
Please register or sign in to reply