summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2015-10-01 19:47:51 +0100
committerRobin Watts <robin.watts@artifex.com>2015-10-02 15:53:21 +0100
commit1b508d5cd7b0d7d4528326b1fa276bce90061b52 (patch)
tree0a9a33f7bc4927fed23295bbb0afd60710cda9a0
parentf810f1dba5da32f00cd11142eaa31b1a736d1aa0 (diff)
downloadmupdf-1b508d5cd7b0d7d4528326b1fa276bce90061b52.tar.xz
Bug 696058: Up maximum zoom resolution to 1152.
It is conceivable that this might run into problems on 32bit builds with suitably large bitmaps, but, hey, don't zoom that far.
-rw-r--r--platform/x11/pdfapp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/x11/pdfapp.h b/platform/x11/pdfapp.h
index e3633577..6a81f871 100644
--- a/platform/x11/pdfapp.h
+++ b/platform/x11/pdfapp.h
@@ -10,9 +10,9 @@
* uses a number of callbacks to the GUI app.
*/
-/* 25% .. 400% */
+/* 25% .. 1600% */
#define MINRES 18
-#define MAXRES 288
+#define MAXRES 1152
typedef struct pdfapp_s pdfapp_t;