1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-05 03:50:07 +00:00

Minor optimisation for the SVG parser

This commit is contained in:
jules 2016-01-17 15:08:54 +00:00
parent 4e48b3b661
commit 30ac2dce0a

View file

@ -618,7 +618,7 @@ private:
const String strokeDashArray (getStyleAttribute (xml, "stroke-dasharray"));
if (strokeDashArray.isNotEmpty())
if (strokeDashArray.isNotEmpty() && ! strokeDashArray.equalsIgnoreCase ("null"))
parseDashArray (strokeDashArray.getCharPointer(), *dp);
parseClipPath (xml, *dp);