[SSE] Disable content for the pivot settings in the right panel.

This commit is contained in:
Julia Radzhabova 2017-10-11 15:22:00 +03:00
parent b74afc68e5
commit 573195e820

View file

@ -194,10 +194,10 @@ define([
this._settings[settingsType].btn.updateHint(this.rightmenu.txtSparklineSettings); this._settings[settingsType].btn.updateHint(this.rightmenu.txtSparklineSettings);
} }
if (pivotInfo && false) { // disable pivot settings if (pivotInfo) {
settingsType = Common.Utils.documentSettingsType.Pivot; settingsType = Common.Utils.documentSettingsType.Pivot;
this._settings[settingsType].props = pivotInfo; this._settings[settingsType].props = pivotInfo;
this._settings[settingsType].locked = isCellLocked; this._settings[settingsType].locked = isCellLocked || true; // disable pivot settings
this._settings[settingsType].hidden = 0; this._settings[settingsType].hidden = 0;
} }