From d92a289c2534ede31998f1c4b55ee1286cf981da Mon Sep 17 00:00:00 2001 From: xDraconian Date: Thu, 17 May 2018 01:30:32 -0500 Subject: [PATCH] Bug fix: svg dirty flag --- simgear/canvas/elements/CanvasPath.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/simgear/canvas/elements/CanvasPath.cxx b/simgear/canvas/elements/CanvasPath.cxx index c23f1e49..5fd8b775 100644 --- a/simgear/canvas/elements/CanvasPath.cxx +++ b/simgear/canvas/elements/CanvasPath.cxx @@ -900,8 +900,10 @@ namespace canvas else if( name == "coord" ) _attributes_dirty |= COORDS; else if ( name == "svg") + { _hasSVG = true; _attributes_dirty |= SVG; + } } //----------------------------------------------------------------------------