From 6e661c6cc9cbbd22166b68b03b8c6a6c125eb28a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 3 Aug 2016 12:54:51 +0300 Subject: [PATCH] [DE] Fix Bug 32595. --- apps/documenteditor/main/app/view/TableSettingsAdvanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js index d50b3e16d..bbc92bbab 100644 --- a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js @@ -1253,7 +1253,7 @@ define([ 'text!documenteditor/main/app/template/TableSettingsAdvanced.templat if (cellWidth !== null) this.nfPrefWidth.setValue(cellWidth>0 ? Common.Utils.Metric.fnRecalcFromMM(cellWidth) : -cellWidth , true); - this.chPrefWidth.setValue(cellWidth !== null, true); + this.chPrefWidth.setValue((props.get_CellsWidthNotEqual()) ? 'indeterminate' : (cellWidth !== null), true); value = (this.chPrefWidth.getValue()!=='checked'); this.nfPrefWidth.setDisabled(value); this.cmbPrefWidthUnit.setDisabled(value);