Commit 1f6eecb5 authored by GoshaZotov's avatar GoshaZotov Committed by Alexander.Trofimov

bug with no fill color

parent d21ffad4
......@@ -6094,7 +6094,15 @@ ColorFilter.prototype.asc_setCColor = function (asc_CColor)
this.dxf.fill = new Fill();
}
if(null === asc_CColor)
{
this.dxf.fill.bg = new RgbColor();
this.dxf.fill.bg.rgb = null;
}
else
{
this.dxf.fill.bg = new RgbColor((asc_CColor.asc_getR() << 16) + (asc_CColor.asc_getG() << 8) + asc_CColor.asc_getB());
}
};
/** @constructor */
......
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