[sse mobile] Fix bug 42310

This commit is contained in:
Julia Svinareva 2020-01-20 10:26:15 +03:00 committed by Alexey Golubev
parent 718393f73d
commit e35a0ab5b5

View file

@ -593,7 +593,7 @@ define([
if (isTextChart) {
_settings.push('text');
}
} else if (isShape || isTextShape) {
} else if ((isShape || isTextShape) && !isImage) {
_settings.push('shape');
if (isTextShape) {
@ -601,6 +601,10 @@ define([
}
} else if (isImage) {
_settings.push('image');
if (isShape) {
_settings.push('shape');
}
} else {
_settings.push('cell');