Commit f68f3a87 authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 34332

parent b9c29090
......@@ -728,7 +728,7 @@
};
CGraphicObjectBase.prototype.setTitle = function(sTitle){
if(undefined === sTitle){
if(undefined === sTitle || null === sTitle){
return;
}
var oNvPr = this.getNvProps();
......@@ -738,7 +738,7 @@
};
CGraphicObjectBase.prototype.setDescription = function(sDescription){
if(undefined === sDescription){
if(undefined === sDescription || null === sDescription){
return;
}
var oNvPr = this.getNvProps();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment