summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2019-11-09 17:06:42 +0100
committerraveit65 <[email protected]>2019-11-11 10:53:05 +0100
commit6f1f443152f91a885cd3479b3f833d6026791380 (patch)
treef1bd32c193a1617198310db109a7d7d64736fc77 /shell
parent97d639522285ef40a2c2f6f7372a4b4b535d8135 (diff)
downloadatril-6f1f443152f91a885cd3479b3f833d6026791380.tar.bz2
atril-6f1f443152f91a885cd3479b3f833d6026791380.tar.xz
show SyncTeX version in about dialog
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 0188b588..8e857b7b 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -5368,8 +5368,8 @@ build_comments_string (EvDocument *document)
if (document && ev_document_get_backend_info (document, &info)) {
comments = g_strdup_printf (
- _("Document Viewer\nUsing %s (%s)"),
- info.name, info.version);
+ _("Document Viewer\nUsing %s (%s)\nand SyncTeX %s"),
+ info.name, info.version, document->synctex_version);
} else {
comments = g_strdup_printf (
_("Document Viewer"));