From 82f9480361b8800b6683dfcd45548e74528f79bd Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Wed, 26 Jun 2019 21:43:19 +0900 Subject: [PATCH] evas svg: remove unnecessary initialization. --- src/modules/evas/vg_loaders/svg/evas_vg_load_svg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/evas/vg_loaders/svg/evas_vg_load_svg.c b/src/modules/evas/vg_loaders/svg/evas_vg_load_svg.c index 7a616f4..32bfb17 100644 --- a/src/modules/evas/vg_loaders/svg/evas_vg_load_svg.c +++ b/src/modules/evas/vg_loaders/svg/evas_vg_load_svg.c @@ -1002,9 +1002,9 @@ _create_node(Svg_Node *parent, Svg_Node_Type type) // update the default value of stroke and fill //https://www.w3.org/TR/SVGTiny12/painting.html#SpecifyingPaint // default fill color is black - node->style->fill.paint.r = 0; - node->style->fill.paint.g = 0; - node->style->fill.paint.b = 0; + //node->style->fill.paint.r = 0; + //node->style->fill.paint.g = 0; + //node->style->fill.paint.b = 0; node->style->fill.paint.none = EINA_FALSE; // default fill opacity is 1 node->style->fill.opacity = 255; -- 2.7.4