[SSE] Bug 43242
This commit is contained in:
parent
fa3c77d60e
commit
db27a53b1f
|
@ -104,9 +104,9 @@ define([ 'text!spreadsheeteditor/main/app/template/ParagraphSettingsAdvanced.
|
|||
];
|
||||
|
||||
this._arrTabAlign = [
|
||||
{ value: 1, displayValue: this.textTabLeft },
|
||||
{ value: 3, displayValue: this.textTabCenter },
|
||||
{ value: 2, displayValue: this.textTabRight }
|
||||
{ value: Asc.c_oAscTabType.Left, displayValue: this.textTabLeft },
|
||||
{ value: Asc.c_oAscTabType.Center, displayValue: this.textTabCenter },
|
||||
{ value: Asc.c_oAscTabType.Right, displayValue: this.textTabRight }
|
||||
];
|
||||
this._arrKeyTabAlign = [];
|
||||
this._arrTabAlign.forEach(function(item) {
|
||||
|
@ -378,7 +378,7 @@ define([ 'text!spreadsheeteditor/main/app/template/ParagraphSettingsAdvanced.
|
|||
cls : 'input-group-nr',
|
||||
data : this._arrTabAlign
|
||||
});
|
||||
this.cmbAlign.setValue(1);
|
||||
this.cmbAlign.setValue(Asc.c_oAscTabType.Left);
|
||||
|
||||
this.btnAddTab = new Common.UI.Button({
|
||||
el: $('#paraadv-button-add-tab')
|
||||
|
|
Loading…
Reference in a new issue