1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-11-11 01:42:35 +03:00

Merge pull request #367 from app-craft/ignore_title

Ignore SVG title tag
This commit is contained in:
Yuri Strot 2018-05-18 15:33:23 +07:00 committed by GitHub
commit eabf6b6bfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -307,7 +307,7 @@ open class SVGParser {
if let effect = parseEffect(node), let id = id {
defEffects[id] = effect
}
case "mask":
case "mask", "title":
break
default:
print("SVG parsing error. Shape \(element.name) not supported")