Displaying changed AS3 scripts in GUI as bold

This commit is contained in:
Jindra Petřík
2015-04-05 22:24:15 +02:00
parent b6d4bbc381
commit 12bbb13497
10 changed files with 76 additions and 12 deletions

View File

@@ -163,6 +163,8 @@ public class ABCPanel extends JPanel implements ItemListener, ActionListener, Se
public JButton cancelDecompiledButton = new JButton(AppStrings.translate("button.cancel"), View.getIcon("cancel16"));
private static final String ACTION_ADD_TRAIT = "ADDTRAIT";
private static List<Long> modifiedPacks = new ArrayList<>();
public MainPanel getMainPanel() {
return mainPanel;
@@ -810,7 +812,7 @@ public class ABCPanel extends JPanel implements ItemListener, ActionListener, Se
}
String as = decompiledTextArea.getText();
abc.replaceSciptPack(pack, as);
abc.replaceScriptPack(pack, as);
lastDecompiled = as;
mainPanel.updateClassesList();