From 7f6367c76fbe706606f9b513f4dc5ac2a7d1bdf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Thu, 6 Mar 2014 17:02:13 +0100 Subject: [PATCH] buttons fix (default clipDepth value) --- .../src/com/jpexs/decompiler/flash/timeline/DepthState.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/trunk/src/com/jpexs/decompiler/flash/timeline/DepthState.java b/trunk/src/com/jpexs/decompiler/flash/timeline/DepthState.java index f3d8a03f0..4ddd6357f 100644 --- a/trunk/src/com/jpexs/decompiler/flash/timeline/DepthState.java +++ b/trunk/src/com/jpexs/decompiler/flash/timeline/DepthState.java @@ -30,7 +30,7 @@ import java.util.List; */ public class DepthState { - public int characterId; + public int characterId = -1; public MATRIX matrix = null; public String instanceName = null; public ColorTransform colorTransForm = null; @@ -40,9 +40,9 @@ public class DepthState { public boolean isVisible = true; public RGBA backGroundColor = null; public CLIPACTIONS clipActions = null; - public int ratio; + public int ratio = -1; public boolean key = false; - public int clipDepth; + public int clipDepth = -1; public int time = 0; public DepthState() {