diff --git a/apps/documenteditor/main/app/view/ShapeSettings.js b/apps/documenteditor/main/app/view/ShapeSettings.js index b221f5d548..0c75fddaa6 100644 --- a/apps/documenteditor/main/app/view/ShapeSettings.js +++ b/apps/documenteditor/main/app/view/ShapeSettings.js @@ -1198,6 +1198,7 @@ define([ this._state.GradColor = color; } + this.chShadow.setDisabled(!!shapeprops.get_FromChart()); this.chShadow.setValue(!!shapeprops.asc_getShadow(), true); this._noApply = false; diff --git a/apps/presentationeditor/main/app/view/ShapeSettings.js b/apps/presentationeditor/main/app/view/ShapeSettings.js index 97404aec3e..acb8643d20 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettings.js +++ b/apps/presentationeditor/main/app/view/ShapeSettings.js @@ -1099,6 +1099,7 @@ define([ this._state.GradColor = color; } + this.chShadow.setDisabled(!!props.get_FromChart()); this.chShadow.setValue(!!props.asc_getShadow(), true); this._noApply = false; diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js index fb9c26e303..2927afb5b4 100644 --- a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js @@ -1124,7 +1124,7 @@ define([ this._state.GradColor = color; } - + this.chShadow.setDisabled(!!shapeprops.get_FromChart()); this.chShadow.setValue(!!shapeprops.asc_getShadow(), true); this._noApply = false;