Commit a597ad99 authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

Fix Bug 22076 - [CoEdit] Не переходит цветовая схема между ползователями

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51707 954022d7-b5bf-4e40-9824-e11837661b57
parent 2b254d4f
...@@ -1530,8 +1530,10 @@ asc_CChartSeria.prototype = { ...@@ -1530,8 +1530,10 @@ asc_CChartSeria.prototype = {
asc_getOutlineColor: function() { return this.OutlineColor; }, asc_getOutlineColor: function() { return this.OutlineColor; },
asc_setOutlineColor: function(color) { asc_setOutlineColor: function(color) {
if ( color instanceof CUniColor ) if ( color instanceof CUniColor ) {
this.OutlineColor = color.createDuplicate(); this.OutlineColor = color.createDuplicate();
this.OutlineColor.isCustom = color.isCustom;
}
}, },
asc_getFormatCode: function() { return this.FormatCode; }, asc_getFormatCode: function() { return this.FormatCode; },
......
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