From 483b17773d161bf27547adb1812beacb277f4ac5 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Apr 2022 19:59:43 +0300 Subject: [PATCH] [DE] Fix aspect ratio (wrong proportion) --- apps/documenteditor/main/app/view/ImageSettingsAdvanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js b/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js index 1a70d2d23..74dc47730 100644 --- a/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js @@ -1408,7 +1408,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat this._setShapeDefaults(shapeprops); this.setTitle(this.textTitleShape); value = props.asc_getLockAspect(); - this.chRatio.setValue(value); + this.chRatio.setValue(value, true); this.spnShapeWidth.setMaxValue(this.sizeMax.width); this.spnShapeHeight.setMaxValue(this.sizeMax.height);