fix bug 33812

This commit is contained in:
Alexander.Trofimov 2017-01-20 13:34:52 +03:00
parent 081514512d
commit b726fc0e22

View file

@ -1941,11 +1941,14 @@ define([
toolbar.lockToolbar(SSE.enumLock.multiselect, this._state.multiselect, { array: [toolbar.btnTableTemplate, toolbar.btnInsertHyperlink]}); toolbar.lockToolbar(SSE.enumLock.multiselect, this._state.multiselect, { array: [toolbar.btnTableTemplate, toolbar.btnInsertHyperlink]});
} }
val = info.asc_getNumFormatInfo().asc_getType(); val = info.asc_getNumFormatInfo();
this._state.numformat = info.asc_getNumFormat(); if (val) {
if (this._state.numformattype !== val) { this._state.numformat = info.asc_getNumFormat();
toolbar.cmbNumberFormat.setValue(val, toolbar.txtCustom); val = val.asc_getType();
this._state.numformattype = val; if (this._state.numformattype !== val) {
toolbar.cmbNumberFormat.setValue(val, toolbar.txtCustom);
this._state.numformattype = val;
}
} }
val = info.asc_getAngle(); val = info.asc_getAngle();