[SSE] Disable cell settings on start

This commit is contained in:
Julia Radzhabova 2019-04-19 17:25:35 +03:00
parent 700f1ab333
commit 414f914165

View file

@ -262,13 +262,15 @@ define([
value: '0 °',
allowDecimal: false,
maxValue: 90,
minValue: -90
minValue: -90,
disabled: this._locked
});
this.lockedControls.push(this.spnAngle);
this.spnAngle.on('change', _.bind(this.onAngleChange, this));
this.btnTextToColumn = new Common.UI.Button({
el: $('#cell-btn-text-to-column')
el: $('#cell-btn-text-to-column'),
disabled: this._locked
});
this.btnTextToColumn.on('click', _.bind(this.onTextToColumn, this));
this.lockedControls.push(this.btnTextToColumn);