From e05df11e989647087ff82bb0473615c902ecac1c Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sun, 15 Mar 2026 15:45:34 +0100 Subject: [PATCH] Increase the maximum viewer scale to 2500 percent After PR 19128 huge zoom levels should no longer be an issue, so let's increase the maximum viewer scale a bit. --- web/ui_utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/ui_utils.js b/web/ui_utils.js index ab695144a..90ab0c893 100644 --- a/web/ui_utils.js +++ b/web/ui_utils.js @@ -19,7 +19,7 @@ const DEFAULT_SCALE_VALUE = "auto"; const DEFAULT_SCALE = 1.0; const DEFAULT_SCALE_DELTA = 1.1; const MIN_SCALE = 0.1; -const MAX_SCALE = 10.0; +const MAX_SCALE = 25.0; const UNKNOWN_SCALE = 0; const MAX_AUTO_SCALE = 1.25; const SCROLLBAR_PADDING = 40;