mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-21 08:55:38 +00:00
Added: #1644 Save all button - has priority over standard Save button
Changed: Save to EXE moved to tools tab Changed: Save (not save as) button are now available only when there's anything to save when the selected SWF is modified. Similar for Save all button.
This commit is contained in:
@@ -4624,6 +4624,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
reload(true);
|
||||
updateMissingNeededCharacters();
|
||||
pinsPanel.refresh();
|
||||
updateUiWithCurrentOpenable();
|
||||
}
|
||||
|
||||
public void refreshDecompiled() {
|
||||
@@ -4921,8 +4922,8 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
try {
|
||||
Tag newTag = new ImageImporter().importImage(it, data, create ? -1 : 0);
|
||||
SWF swf = it.getSwf();
|
||||
if (newTag != null) {
|
||||
refreshTree(swf);
|
||||
refreshTree(swf);
|
||||
if (newTag != null) {
|
||||
setTagTreeSelectedNode(getCurrentTree(), newTag);
|
||||
}
|
||||
swf.clearImageCache();
|
||||
@@ -4963,8 +4964,8 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
}
|
||||
}
|
||||
SWF swf = st.getSwf();
|
||||
if (newTag != null) {
|
||||
refreshTree(swf);
|
||||
refreshTree(swf);
|
||||
if (newTag != null) {
|
||||
setTagTreeSelectedNode(getCurrentTree(), newTag);
|
||||
}
|
||||
|
||||
@@ -6190,6 +6191,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
tagTree.repaint();
|
||||
tagListTree.repaint();
|
||||
reload(true);
|
||||
updateUiWithCurrentOpenable();
|
||||
}
|
||||
|
||||
public void showGenericTag(Tag tag) {
|
||||
|
||||
Reference in New Issue
Block a user