mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 06:50:46 +00:00
Add to stage tag order fix.
This commit is contained in:
@@ -1144,13 +1144,14 @@ public final class ImagePanel extends JPanel implements MediaDisplay {
|
||||
if (altDown || selectionMode) {
|
||||
if (depthStateUnderCursor != null) {
|
||||
if (transformSelectionMode) {
|
||||
if (freeTransformDepth != depthStateUnderCursor.depth) {
|
||||
if (freeTransformDepth != depthStateUnderCursor.depth && mode == Cursor.DEFAULT_CURSOR) {
|
||||
freeTransformDepth(depthStateUnderCursor.depth);
|
||||
firePlaceObjectSelected();
|
||||
}
|
||||
} else if (selectionMode) {
|
||||
selectDepth(depthStateUnderCursor.depth);
|
||||
}
|
||||
firePlaceObjectSelected();
|
||||
firePlaceObjectSelected();
|
||||
}
|
||||
}
|
||||
if (!selectionMode) {
|
||||
return;
|
||||
|
||||
@@ -91,6 +91,7 @@ import com.jpexs.decompiler.flash.tags.SymbolClassTag;
|
||||
import com.jpexs.decompiler.flash.tags.Tag;
|
||||
import com.jpexs.decompiler.flash.tags.TagTypeInfo;
|
||||
import com.jpexs.decompiler.flash.tags.UnknownTag;
|
||||
import com.jpexs.decompiler.flash.tags.VideoFrameTag;
|
||||
import com.jpexs.decompiler.flash.tags.base.ASMSource;
|
||||
import com.jpexs.decompiler.flash.tags.base.BinaryDataInterface;
|
||||
import com.jpexs.decompiler.flash.tags.base.ButtonTag;
|
||||
@@ -5281,7 +5282,8 @@ public class TagTreeContextMenu extends JPopupMenu {
|
||||
Tag t2 = swf.getTags().get(j);
|
||||
if ((t2 instanceof CharacterIdTag)
|
||||
&& !(t2 instanceof PlaceObjectTypeTag)
|
||||
&& !(t2 instanceof RemoveTag)) {
|
||||
&& !(t2 instanceof RemoveTag)
|
||||
&& !(t2 instanceof VideoFrameTag)) {
|
||||
CharacterIdTag chit = (CharacterIdTag) t2;
|
||||
if (chit.getCharacterId() == characterId) {
|
||||
swf.removeTag(j);
|
||||
|
||||
Reference in New Issue
Block a user