Commit 3a7c0e91 authored by SergeyLuzyanin's avatar SergeyLuzyanin

runPr parsing

parent 1afe82f7
......@@ -6159,7 +6159,14 @@ PasteProcessor.prototype =
var color = computedStyle.getPropertyValue( "color" );
if(color && (color = this._ParseColor(color)))
{
rPr.Color = color;
if(PasteElementsId.g_bIsDocumentCopyPaste){
rPr.Color = color;
}
else{
if(color){
rPr.Unifill = AscFormat.CreateUnfilFromRGB(color.r, color.g, color.b);
}
}
}
var spacing = computedStyle.getPropertyValue( "letter-spacing" );
......
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