#899 Show script after AS3 Direct editation

This commit is contained in:
honfika@gmail.com
2015-05-26 21:59:36 +02:00
parent afa593af32
commit 434489770e
3 changed files with 25 additions and 6 deletions

View File

@@ -228,6 +228,7 @@ public class ABCPanel extends JPanel implements ItemListener, SearchListener<ABC
public void setAbc(ABC abc) {
this.abc = abc;
setDecompiledEditMode(false);
navigator.setAbc(abc);
updateConstList();
}
@@ -629,7 +630,11 @@ public class ABCPanel extends JPanel implements ItemListener, SearchListener<ABC
public void reload() {
lastDecompiled = "";
getSwf().clearScriptCache();
SWF swf = getSwf();
if (swf != null) {
swf.clearScriptCache();
}
decompiledTextArea.reloadClass();
detailPanel.methodTraitPanel.methodCodePanel.clear();
}