mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-30 12:41:34 +00:00
Fixed Exception on closing multiple SWFs
This commit is contained in:
@@ -50,6 +50,7 @@ All notable changes to this project will be documented in this file.
|
||||
- Classnames in PlaceObject
|
||||
- [#1828] AS1/2 deobfuscation removing variable declarations
|
||||
- Loaded SWFs using "Open loaded during play" feature have short filenames
|
||||
- Exception on closing multiple SWFs
|
||||
|
||||
### Changed
|
||||
- Quick search needs minimum of 3 characters
|
||||
|
||||
@@ -1165,7 +1165,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
AbstractTagTreeModel ttm = tagTree.getFullModel();
|
||||
if (ttm != null) {
|
||||
if (getCurrentSwf() == null) {
|
||||
tagTree.setSelectionPath(ttm.getTreePath(ttm.getRoot()));
|
||||
tagTree.clearSelection();
|
||||
}
|
||||
ttm.updateSwfs(e);
|
||||
tagTree.expandRoot();
|
||||
@@ -1185,7 +1185,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
ttm = tagListTree.getFullModel();
|
||||
if (ttm != null) {
|
||||
if (getCurrentSwf() == null) {
|
||||
tagListTree.setSelectionPath(ttm.getTreePath(ttm.getRoot()));
|
||||
tagListTree.clearSelection();
|
||||
}
|
||||
ttm.updateSwfs(e);
|
||||
tagListTree.expandRoot();
|
||||
|
||||
Reference in New Issue
Block a user