From dad4ce3e90e02f37623ed3a4e3878d8b8eec0b06 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 12 Feb 2019 15:20:50 +0300 Subject: [PATCH] [DE] Fix max values for page size --- apps/documenteditor/main/app/view/PageSizeDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/PageSizeDialog.js b/apps/documenteditor/main/app/view/PageSizeDialog.js index b4637c25b..057011fd4 100644 --- a/apps/documenteditor/main/app/view/PageSizeDialog.js +++ b/apps/documenteditor/main/app/view/PageSizeDialog.js @@ -103,7 +103,7 @@ define([ width: 86, defaultUnit : "cm", value: '10 cm', - maxValue: 55.88, + maxValue: 118.9, minValue: 0 }); this.spinners.push(this.spnWidth); @@ -118,7 +118,7 @@ define([ width: 86, defaultUnit : "cm", value: '20 cm', - maxValue: 55.88, + maxValue: 118.9, minValue: 0 }); this.spinners.push(this.spnHeight);