You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
28 lines
1.0 KiB
From 89851522051ffdc171c6e63c82d07205b0683aea Mon Sep 17 00:00:00 2001
|
|
Message-Id: <89851522051ffdc171c6e63c82d07205b0683aea.1652644338.git.mjg@fedoraproject.org>
|
|
From: Michael J Gruber <mjg@fedoraproject.org>
|
|
Date: Sun, 15 May 2022 21:52:07 +0200
|
|
Subject: [PATCH] adapt to mupdf 1.20
|
|
|
|
Signed-off-by: Michael J Gruber <mjg@fedoraproject.org>
|
|
---
|
|
zathura-pdf-mupdf/search.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/zathura-pdf-mupdf/search.c b/zathura-pdf-mupdf/search.c
|
|
index f84dea0..419e5f4 100644
|
|
--- a/zathura-pdf-mupdf/search.c
|
|
+++ b/zathura-pdf-mupdf/search.c
|
|
@@ -41,7 +41,7 @@ pdf_page_search_text(zathura_page_t* page, void* data, const char* text, zathura
|
|
|
|
fz_quad* hit_bbox = fz_malloc_array(mupdf_page->ctx, N_SEARCH_RESULTS, fz_quad);
|
|
int num_results = fz_search_stext_page(mupdf_page->ctx, mupdf_page->text,
|
|
- text, hit_bbox, N_SEARCH_RESULTS);
|
|
+ text, NULL, hit_bbox, N_SEARCH_RESULTS);
|
|
|
|
fz_rect r;
|
|
for (int i = 0; i < num_results; i++) {
|
|
--
|
|
2.36.1.165.g85e47b7606
|
|
|