File tree Expand file tree Collapse file tree
src/main/java/the/bytecode/club/bytecodeviewer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -733,6 +733,15 @@ public void calledAfterLoad() {
733733 deleteForeignOutdatedLibs .setSelected (Configuration .deleteForeignLibraries );
734734 }
735735
736+ public synchronized void clearBusyStatus ()
737+ {
738+ for (int i = 0 ; i < waitIcons .length ; i ++)
739+ {
740+ waitIcons [i ].setIcon (null );
741+ waitIcons [i ].updateUI ();
742+ }
743+ }
744+
736745 public synchronized void updateBusyStatus (final boolean busy ) {
737746 SwingUtilities .invokeLater (() -> {
738747 if (busy ) {
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ public boolean open(File file) throws Exception
7070 }
7171 }
7272 Configuration .silenceExceptionGUI --; //turn exceptions back on
73+ BytecodeViewer .viewer .clearBusyStatus (); //clear errant busy signals from failed APK imports
7374
7475 container .classes .addAll (allDirectoryClasses .values ());
7576 container .files = allDirectoryFiles ;
You can’t perform that action at this time.
0 commit comments