diff options
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); |