diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/SetTabIndexTag.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/SetTabIndexTag.java index a5fd9e95f..687075f51 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/SetTabIndexTag.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/SetTabIndexTag.java @@ -24,6 +24,7 @@ import com.jpexs.decompiler.flash.types.annotations.SWFType; import com.jpexs.decompiler.flash.types.annotations.SWFVersion; import com.jpexs.helpers.ByteArrayRange; import java.io.IOException; +import java.util.Map; /** * SetTabIndex tag - sets the index of an object within the tab order. @@ -87,4 +88,12 @@ public class SetTabIndexTag extends Tag { sos.writeUI16(depth); sos.writeUI16(tabIndex); } + + @Override + public Map getNameProperties() { + Map ret = super.getNameProperties(); + ret.put("dpt", "" + depth); + ret.put("ti", "" + tabIndex); + return ret; + } }