XAPK Support
This commit is contained in:
parent
50406f03e9
commit
a2724daa8a
2 changed files with 10 additions and 0 deletions
|
@ -733,6 +733,15 @@ public class MainViewerGUI extends JFrame
|
|||
deleteForeignOutdatedLibs.setSelected(Configuration.deleteForeignLibraries);
|
||||
}
|
||||
|
||||
public synchronized void clearBusyStatus()
|
||||
{
|
||||
for (int i = 0; i < waitIcons.length; i++)
|
||||
{
|
||||
waitIcons[i].setIcon(null);
|
||||
waitIcons[i].updateUI();
|
||||
}
|
||||
}
|
||||
|
||||
public synchronized void updateBusyStatus(final boolean busy) {
|
||||
SwingUtilities.invokeLater(() -> {
|
||||
if (busy) {
|
||||
|
|
|
@ -70,6 +70,7 @@ public class XAPKResourceImporter implements Importer
|
|||
}
|
||||
}
|
||||
Configuration.silenceExceptionGUI--; //turn exceptions back on
|
||||
BytecodeViewer.viewer.clearBusyStatus(); //clear errant busy signals from failed APK imports
|
||||
|
||||
container.classes.addAll(allDirectoryClasses.values());
|
||||
container.files = allDirectoryFiles;
|
||||
|
|
Loading…
Reference in a new issue