Commit 8c918527 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Bug 31172 - [TextArt]Не попадаем в нулевые настройки Text Art, если он...

Bug 31172 - [TextArt]Не попадаем в нулевые настройки Text Art, если он содержит различные настройки Gradient Fill 

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67047 954022d7-b5bf-4e40-9824-e11837661b57
parent f277f061
......@@ -2263,7 +2263,7 @@ CGs.prototype =
compare: function(gs)
{
if( gs.pos === this.pos){
if( gs.pos !== this.pos){
return null;
}
var compare_unicolor = this.color.compare(gs.color);
......@@ -2636,7 +2636,7 @@ CGradFill.prototype =
var compare_unicolor = this.colors[i].compare(fill.colors[i]);
if(!isRealObject(compare_unicolor))
{
break;
return null;
}
_ret.colors[i] = compare_unicolor;
}
......
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