parent
73157a5ec5
commit
709c2f4f3c
@ -1,50 +0,0 @@
|
||||
From c7f341addb76d5e6fd8c24c666d8fe97c451a4cb Mon Sep 17 00:00:00 2001
|
||||
Message-Id: <c7f341addb76d5e6fd8c24c666d8fe97c451a4cb.1589654105.git.mjg@fedoraproject.org>
|
||||
From: Moritz Lipp <mail@mlq.me>
|
||||
Date: Thu, 7 May 2020 20:42:01 +0200
|
||||
Subject: [PATCH] Update to mupdf 1.17
|
||||
|
||||
Signed-off-by: Michael J Gruber <mjg@fedoraproject.org>
|
||||
---
|
||||
zathura-pdf-mupdf/index.c | 4 +++-
|
||||
zathura-pdf-mupdf/links.c | 5 +++--
|
||||
2 files changed, 6 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/zathura-pdf-mupdf/index.c b/zathura-pdf-mupdf/index.c
|
||||
index c421f5c..cbbe978 100644
|
||||
--- a/zathura-pdf-mupdf/index.c
|
||||
+++ b/zathura-pdf-mupdf/index.c
|
||||
@@ -65,9 +65,11 @@ build_index(fz_context* ctx, fz_document* document, fz_outline* outline, girara_
|
||||
float x = 0;
|
||||
float y = 0;
|
||||
|
||||
+ fz_location location = fz_resolve_link(ctx, document, outline->uri, &x, &y);
|
||||
+
|
||||
type = ZATHURA_LINK_GOTO_DEST;
|
||||
target.destination_type = ZATHURA_LINK_DESTINATION_XYZ;
|
||||
- target.page_number = fz_resolve_link(ctx, document, outline->uri, &x, &y);
|
||||
+ target.page_number = location.page;
|
||||
target.left = x;
|
||||
target.top = y;
|
||||
target.zoom = 0.0;
|
||||
diff --git a/zathura-pdf-mupdf/links.c b/zathura-pdf-mupdf/links.c
|
||||
index 99c5715..157f039 100644
|
||||
--- a/zathura-pdf-mupdf/links.c
|
||||
+++ b/zathura-pdf-mupdf/links.c
|
||||
@@ -54,10 +54,11 @@ pdf_page_links_get(zathura_page_t* page, void* data, zathura_error_t* error)
|
||||
float x = 0;
|
||||
float y = 0;
|
||||
|
||||
+ fz_location location = fz_resolve_link(mupdf_document->ctx, mupdf_document->document, link->uri, &x, &y);
|
||||
+
|
||||
type = ZATHURA_LINK_GOTO_DEST;
|
||||
target.destination_type = ZATHURA_LINK_DESTINATION_XYZ;
|
||||
- target.page_number = fz_resolve_link(mupdf_document->ctx,
|
||||
- mupdf_document->document, link->uri, &x, &y);
|
||||
+ target.page_number = location.page;
|
||||
target.left = x;
|
||||
target.top = y;
|
||||
target.zoom = 0.0;
|
||||
--
|
||||
2.26.2.764.g8d8fb31f15
|
||||
|
@ -1 +1 @@
|
||||
SHA512 (zathura-pdf-mupdf-0.3.5.tar.xz) = e57b002c9cd3895996609d3f16e9fc6e533a1607eeeb1240c00bf28a12e3c725c3f93e37d0b1315e0fc3ea59314ea8bf35c47baa308c6c4b144a66a1cd5c7a3d
|
||||
SHA512 (zathura-pdf-mupdf-0.3.6.tar.xz) = 417bc5c1fc141ece82c0617ca311a45354180dd786d48df577e5d68b0eb61198e9867e099216bafb6adae24e743366b4fcf128fdbb4d414db66040224fac27f5
|
||||
|
Loading…
Reference in new issue