Fix Bug 60179
This commit is contained in:
parent
34392d7eab
commit
a5f27a9275
|
@ -1214,7 +1214,7 @@ define([
|
|||
this._state.GradColor = color;
|
||||
}
|
||||
|
||||
this.chShadow.setDisabled(!!shapeprops.get_FromChart());
|
||||
this.chShadow.setDisabled(!!shapeprops.get_FromChart() || this._locked);
|
||||
this.chShadow.setValue(!!shapeprops.asc_getShadow(), true);
|
||||
|
||||
this._noApply = false;
|
||||
|
|
|
@ -1145,7 +1145,7 @@ define([
|
|||
this._state.GradColor = color;
|
||||
}
|
||||
|
||||
this.chShadow.setDisabled(!!props.get_FromChart());
|
||||
this.chShadow.setDisabled(!!props.get_FromChart() || this._locked);
|
||||
this.chShadow.setValue(!!props.asc_getShadow(), true);
|
||||
|
||||
this._noApply = false;
|
||||
|
|
|
@ -1140,7 +1140,7 @@ define([
|
|||
|
||||
this._state.GradColor = color;
|
||||
}
|
||||
this.chShadow.setDisabled(!!shapeprops.get_FromChart());
|
||||
this.chShadow.setDisabled(!!shapeprops.get_FromChart() || this._locked);
|
||||
this.chShadow.setValue(!!shapeprops.asc_getShadow(), true);
|
||||
|
||||
this._noApply = false;
|
||||
|
|
Loading…
Reference in a new issue