[sse mobile] Fix bug 42310
This commit is contained in:
parent
718393f73d
commit
e35a0ab5b5
|
@ -593,7 +593,7 @@ define([
|
||||||
if (isTextChart) {
|
if (isTextChart) {
|
||||||
_settings.push('text');
|
_settings.push('text');
|
||||||
}
|
}
|
||||||
} else if (isShape || isTextShape) {
|
} else if ((isShape || isTextShape) && !isImage) {
|
||||||
_settings.push('shape');
|
_settings.push('shape');
|
||||||
|
|
||||||
if (isTextShape) {
|
if (isTextShape) {
|
||||||
|
@ -601,6 +601,10 @@ define([
|
||||||
}
|
}
|
||||||
} else if (isImage) {
|
} else if (isImage) {
|
||||||
_settings.push('image');
|
_settings.push('image');
|
||||||
|
|
||||||
|
if (isShape) {
|
||||||
|
_settings.push('shape');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
_settings.push('cell');
|
_settings.push('cell');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue