diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-04-30 19:25:09 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-04-30 19:25:09 +0200 |
commit | 1d2f47520c4aa0f47459246d660485ef6b80cc48 (patch) | |
tree | 41549a3ebec3c60afde4554daa61c3c19e266b16 /src/app-window.vala | |
parent | d427874ae9bf8393c9ee6b020bf8b62f531dd4dd (diff) | |
parent | 6434f7a5b8bdb0c4cf71879d0c904938cf44dcc5 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/app-window.vala')
-rw-r--r-- | src/app-window.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app-window.vala b/src/app-window.vala index 2cd75ee..1475e0a 100644 --- a/src/app-window.vala +++ b/src/app-window.vala @@ -1193,7 +1193,7 @@ public class AppWindow : Gtk.ApplicationWindow 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++) { @@ -1285,7 +1285,7 @@ public class AppWindow : Gtk.ApplicationWindow "authors", authors, "translator-credits", _("translator-credits"), "website", "https://launchpad.net/simple-scan", - "copyright", "Copyright © 2009-2015 Canonical Ltd.", + "copyright", "Copyright © 2009-2018 Canonical Ltd.", "license", license, "wrap-license", true, null); |