diff --git a/apps/documenteditor/main/app/template/TableSettingsAdvanced.template b/apps/documenteditor/main/app/template/TableSettingsAdvanced.template index f4960a697..9888f0f5f 100644 --- a/apps/documenteditor/main/app/template/TableSettingsAdvanced.template +++ b/apps/documenteditor/main/app/template/TableSettingsAdvanced.template @@ -146,10 +146,11 @@
+
-
+
diff --git a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js index d4bc9c0ec..3b2bf055a 100644 --- a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js @@ -1473,11 +1473,11 @@ define([ 'text!documenteditor/main/app/template/TableSettingsAdvanced.templat if (this._changedProps && btn.pressed) { if (this._state.alignChanged) { if (this._state.HAlignType===Asc.c_oAscXAlign.Left) - this.btnAlignLeft.toggle(true, true); + this.btnAlignLeft.toggle(true); else if (this._state.HAlignType==Asc.c_oAscXAlign.Center) - this.btnAlignCenter.toggle(true, true); + this.btnAlignCenter.toggle(true); else if (this._state.HAlignType==Asc.c_oAscXAlign.Right) - this.btnAlignRight.toggle(true, true); + this.btnAlignRight.toggle(true); this._state.alignChanged = false; } @@ -2176,7 +2176,8 @@ define([ 'text!documenteditor/main/app/template/TableSettingsAdvanced.templat textWrapText: 'Wrap text', textTable: 'Table', textTableSize: 'Table Size', - textTablePosition: 'Table Position' + textTablePosition: 'Table Position', + textWrappingStyle: 'Wrapping Style' }, DE.Views.TableSettingsAdvanced || {})); }); diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index f06ab7102..466ce7943 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1355,6 +1355,7 @@ "DE.Views.TableSettingsAdvanced.textWrap": "Text Wrapping", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Inline table", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Flow table", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Wrapping Style", "DE.Views.TableSettingsAdvanced.tipAll": "Set Outer Border and All Inner Lines", "DE.Views.TableSettingsAdvanced.tipCellAll": "Set Borders for Inner Cells Only", "DE.Views.TableSettingsAdvanced.tipCellInner": "Set Vertical and Horizontal Lines for Inner Cells Only",