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:
parent
4e48b3b661
commit
30ac2dce0a
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue