[SSE] Disable cell settings on start
This commit is contained in:
parent
700f1ab333
commit
414f914165
|
@ -262,13 +262,15 @@ define([
|
||||||
value: '0 °',
|
value: '0 °',
|
||||||
allowDecimal: false,
|
allowDecimal: false,
|
||||||
maxValue: 90,
|
maxValue: 90,
|
||||||
minValue: -90
|
minValue: -90,
|
||||||
|
disabled: this._locked
|
||||||
});
|
});
|
||||||
this.lockedControls.push(this.spnAngle);
|
this.lockedControls.push(this.spnAngle);
|
||||||
this.spnAngle.on('change', _.bind(this.onAngleChange, this));
|
this.spnAngle.on('change', _.bind(this.onAngleChange, this));
|
||||||
|
|
||||||
this.btnTextToColumn = new Common.UI.Button({
|
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.btnTextToColumn.on('click', _.bind(this.onTextToColumn, this));
|
||||||
this.lockedControls.push(this.btnTextToColumn);
|
this.lockedControls.push(this.btnTextToColumn);
|
||||||
|
|
Loading…
Reference in a new issue