From b3148f83a8db102ba24b699a60f5d74fdfe897f8 Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Sun, 27 Dec 2015 19:13:40 +0100 Subject: [PATCH] fix --- .../com/jpexs/decompiler/flash/importers/svg/SvgStyle.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgStyle.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgStyle.java index ece9a924a..87f6a1398 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgStyle.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgStyle.java @@ -700,9 +700,9 @@ class SvgStyle implements Cloneable { SvgStyleProperty styleProperty = SvgStyleProperty.getByName(name); if (styleProperty == null) { importer.showWarning(name + "StyleNotSupported", "The style '" + name + "' is not supported."); + } else { + applyStyle(idMap, result, this, styleProperty, parts[1].trim()); } - - applyStyle(idMap, result, this, styleProperty, parts[1].trim()); } }