diff --git a/apps/documenteditor/main/app/view/TextArtSettings.js b/apps/documenteditor/main/app/view/TextArtSettings.js index 1eb68f28b3..6f60b114fe 100644 --- a/apps/documenteditor/main/app/view/TextArtSettings.js +++ b/apps/documenteditor/main/app/view/TextArtSettings.js @@ -1060,7 +1060,7 @@ define([ createDelayedElements: function() { this.UpdateThemeColors(); - this.fillTransform(this.api.get_PropertyEditorTextArts()); + this.fillTransform(this.api.asc_getPropertyEditorTextArts()); }, fillTextArt: function() { diff --git a/apps/presentationeditor/main/app/view/TextArtSettings.js b/apps/presentationeditor/main/app/view/TextArtSettings.js index 8180000a85..17e65ebeee 100644 --- a/apps/presentationeditor/main/app/view/TextArtSettings.js +++ b/apps/presentationeditor/main/app/view/TextArtSettings.js @@ -1498,7 +1498,7 @@ define([ this.PatternFillType = this.patternViewData[0].type; } this.UpdateThemeColors(); - this.fillTransform(this.api.get_PropertyEditorTextArts()); + this.fillTransform(this.api.asc_getPropertyEditorTextArts()); }, onInitStandartTextures: function(texture) { diff --git a/apps/spreadsheeteditor/main/app/view/TextArtSettings.js b/apps/spreadsheeteditor/main/app/view/TextArtSettings.js index d1bd732c7f..829fe58ef6 100644 --- a/apps/spreadsheeteditor/main/app/view/TextArtSettings.js +++ b/apps/spreadsheeteditor/main/app/view/TextArtSettings.js @@ -587,7 +587,7 @@ define([ if (this.api) { this.api.asc_setInterfaceDrawImagePlaceTextArt('textart-texture-img'); this.api.asc_registerCallback('asc_onInitStandartTextures', _.bind(this.onInitStandartTextures, this)); - this.api.asc_registerCallback('asc_onInitEditorTextArts', _.bind(this.fillTransform, this)); + this.fillTransform(this.api.asc_getPropertyEditorTextArts()); } return this; },