[PE] Fix first markers loading

This commit is contained in:
Julia Radzhabova 2022-10-12 18:08:52 +03:00
parent b33739c8b2
commit 8d28f72669

View file

@ -110,7 +110,8 @@ define([
in_chart: false, in_chart: false,
no_columns: false, no_columns: false,
clrhighlight: undefined, clrhighlight: undefined,
can_copycut: undefined can_copycut: undefined,
needCallApiBullets: undefined
}; };
this._isAddingShape = false; this._isAddingShape = false;
this.slideSizeArr = [ this.slideSizeArr = [
@ -524,6 +525,12 @@ define([
}, },
onApiBullets: function(v) { onApiBullets: function(v) {
if (!(this.toolbar.mnuMarkersPicker && this.toolbar.mnuMarkersPicker.store)) {
this._state.needCallApiBullets = v;
return;
}
this._state.needCallApiBullets = undefined;
if (this._state.bullets.type !== v.get_ListType() || this._state.bullets.subtype !== v.get_ListSubType() || v.get_ListType()===0 && v.get_ListSubType()===0x1000) { if (this._state.bullets.type !== v.get_ListType() || this._state.bullets.subtype !== v.get_ListSubType() || v.get_ListType()===0 && v.get_ListSubType()===0x1000) {
this._state.bullets.type = v.get_ListType(); this._state.bullets.type = v.get_ListType();
this._state.bullets.subtype = v.get_ListSubType(); this._state.bullets.subtype = v.get_ListSubType();
@ -2593,6 +2600,7 @@ define([
createDelayedElements: function() { createDelayedElements: function() {
this.toolbar.createDelayedElements(); this.toolbar.createDelayedElements();
this.attachUIEvents(this.toolbar); this.attachUIEvents(this.toolbar);
this._state.needCallApiBullets && this.onApiBullets(this._state.needCallApiBullets);
}, },
onAppShowed: function (config) { onAppShowed: function (config) {