Bläddra i källkod

LibWeb: Change SVGContext initial fill_color to transparent

This patch changes the initialization of the fill_color of an SVGContext
to transparent instead of black to not draw a black filling if the
elements fill_color is defined as "none".
Torstennator 2 år sedan
förälder
incheckning
7c09d7c52f
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      Userland/Libraries/LibWeb/SVG/SVGContext.h

+ 1 - 1
Userland/Libraries/LibWeb/SVG/SVGContext.h

@@ -35,7 +35,7 @@ public:
 
 
 private:
 private:
     struct State {
     struct State {
-        Gfx::Color fill_color { Gfx::Color::Black };
+        Gfx::Color fill_color { Gfx::Color::Transparent };
         Gfx::Color stroke_color { Gfx::Color::Transparent };
         Gfx::Color stroke_color { Gfx::Color::Transparent };
         float stroke_width { 1.0 };
         float stroke_width { 1.0 };
     };
     };