Merge pull request #20879 from Snuffleupagus/increase-MAX_SCALE

Increase the maximum viewer scale to 2500 percent
This commit is contained in:
Tim van der Meij 2026-03-15 19:46:36 +01:00 committed by GitHub
commit 665a631bdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;