Merge branch 'develop' into feature/optimization
This commit is contained in:
commit
8332c3b133
|
@ -1878,7 +1878,10 @@ define([
|
||||||
Common.Utils.ThemeColor.setColors(colors, standart_colors);
|
Common.Utils.ThemeColor.setColors(colors, standart_colors);
|
||||||
if (window.styles_loaded) {
|
if (window.styles_loaded) {
|
||||||
this.updateThemeColors();
|
this.updateThemeColors();
|
||||||
this.fillTextArt(this.api.asc_getTextArtPreviews());
|
var me = this;
|
||||||
|
setTimeout(function(){
|
||||||
|
me.fillTextArt(me.api.asc_getTextArtPreviews());
|
||||||
|
}, 1);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -1556,7 +1556,10 @@ define([
|
||||||
Common.Utils.ThemeColor.setColors(colors, standart_colors);
|
Common.Utils.ThemeColor.setColors(colors, standart_colors);
|
||||||
if (window.styles_loaded) {
|
if (window.styles_loaded) {
|
||||||
this.updateThemeColors();
|
this.updateThemeColors();
|
||||||
this.fillTextArt(this.api.asc_getTextArtPreviews());
|
var me = this;
|
||||||
|
setTimeout(function(){
|
||||||
|
me.fillTextArt(me.api.asc_getTextArtPreviews());
|
||||||
|
}, 1);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -1844,7 +1844,10 @@ define([
|
||||||
Common.Utils.ThemeColor.setColors(colors, standart_colors);
|
Common.Utils.ThemeColor.setColors(colors, standart_colors);
|
||||||
if (window.styles_loaded && !this.appOptions.isEditMailMerge && !this.appOptions.isEditDiagram) {
|
if (window.styles_loaded && !this.appOptions.isEditMailMerge && !this.appOptions.isEditDiagram) {
|
||||||
this.updateThemeColors();
|
this.updateThemeColors();
|
||||||
this.fillTextArt(this.api.asc_getTextArtPreviews());
|
var me = this;
|
||||||
|
setTimeout(function(){
|
||||||
|
me.fillTextArt(me.api.asc_getTextArtPreviews());
|
||||||
|
}, 1);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue