Commit 1ccd2d05 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

http://bugzserver/show_bug.cgi?id=25304 - Не сохраняются форматирование...

http://bugzserver/show_bug.cgi?id=25304 -  Не сохраняются форматирование текста при копировании между автофигурами(правка для цвета текста)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57252 954022d7-b5bf-4e40-9824-e11837661b57
parent b79941d8
......@@ -529,7 +529,13 @@ CopyProcessor.prototype =
else if (null != Value.HighLight && highlight_None != Value.HighLight)
aProp.push("background-color:" + this.RGBToCSS(Value.HighLight, null));
if (null != Value.Color || null != Value.Unifill) {
var color = this.RGBToCSS(Value.Color, Value.Unifill);
var color;
//TODO правка того, что в полученной html цвет текста всегда чёрный. стоит пересмотреть.
if(null != Value.Unifill)
color = this.RGBToCSS(null, Value.Unifill);
else
color = this.RGBToCSS(Value.Color, Value.Unifill);
aProp.push("color:" + color);
aProp.push("mso-style-textfill-fill-color:" + color);
}
......
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