Commit 59708651 authored by GoshaZotov's avatar GoshaZotov

apply color filter - change themeColor on RgbColor

parent c4e9c5cc
...@@ -11643,7 +11643,7 @@ ...@@ -11643,7 +11643,7 @@
//TODO просмотерть ситуации без заливки //TODO просмотерть ситуации без заливки
var color = cell.getStyle(); var color = cell.getStyle();
var cellColor = null !== color && color.fill && color.fill.bg ? color.fill.bg : null; var cellColor = null !== color && color.fill && color.fill.bg ? color.fill.bg : null;
filter.filter.dxf.fill.bg = cellColor; filter.filter.dxf.fill.bg = null !== cellColor ? new AscCommonExcel.RgbColor(cellColor.rgb) : new AscCommonExcel.RgbColor(null);
} }
} }
} }
......
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