summaryrefslogtreecommitdiff
path: root/debian/patches/0015-xdg-email.patch
blob: a86c354b387b3ce06250b5688b7685ccfd23b9d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Add space between xdg-email ans parameter
Author: Jörg Frings-Fürst <debian@jff.email>
Last-Update: 2018-01-13 
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: trunk/src/app-window.vala
===================================================================
--- trunk.orig/src/app-window.vala
+++ trunk/src/app-window.vala
@@ -1193,7 +1193,7 @@ public class AppWindow : Gtk.Application
             yield book.save_async (type, settings.get_int ("jpeg-quality"), file, null, null);
             var command_line = "xdg-email";
             if (type == "pdf")
-                command_line += "--attach %s".printf (file.get_path ());
+                command_line += " --attach %s".printf (file.get_path ());
             else
             {
                 for (var i = 0; i < book.n_pages; i++) {