mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-07 14:28:35 +00:00
Issue #1118 Loading characters through ImportAssets - show as readonly
icon
This commit is contained in:
@@ -27,7 +27,7 @@ public class Stage extends DisplayObject {
|
||||
startTime = System.currentTimeMillis();
|
||||
this.timelined = timelined;
|
||||
this.timeline = timelined != null ? timelined.getTimeline() : null;
|
||||
this.frame = timelined != null ? this.timeline.getFrame(0) : null;
|
||||
this.frame = timelined != null && this.timeline.getFrameCount() > 0 ? this.timeline.getFrame(0) : null;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user