Commit e10cf7db authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

Font:set при выставлении font обнуляется scheme

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55713 954022d7-b5bf-4e40-9824-e11837661b57
parent b04f1063
...@@ -550,8 +550,10 @@ Font.prototype = ...@@ -550,8 +550,10 @@ Font.prototype =
}, },
set : function(oVal) set : function(oVal)
{ {
if(null != oVal.fn) if (null != oVal.fn) {
this.fn = oVal.fn; this.fn = oVal.fn;
this.scheme = null;
}
if(null != oVal.scheme) if(null != oVal.scheme)
this.scheme = oVal.scheme; this.scheme = oVal.scheme;
if(null != oVal.fs) if(null != oVal.fs)
......
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