Commit b726fc0e authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 33812

parent 08151451
...@@ -1941,12 +1941,15 @@ define([ ...@@ -1941,12 +1941,15 @@ 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();
if (val) {
this._state.numformat = info.asc_getNumFormat(); this._state.numformat = info.asc_getNumFormat();
val = val.asc_getType();
if (this._state.numformattype !== val) { if (this._state.numformattype !== val) {
toolbar.cmbNumberFormat.setValue(val, toolbar.txtCustom); toolbar.cmbNumberFormat.setValue(val, toolbar.txtCustom);
this._state.numformattype = val; this._state.numformattype = val;
} }
}
val = info.asc_getAngle(); val = info.asc_getAngle();
if (this._state.angle !== val) { if (this._state.angle !== val) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment