We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9905c2a commit ac057fbCopy full SHA for ac057fb
mode/tools/SDKUpdater/src/processing/mode/android/tools/SDKUpdater.java
@@ -771,9 +771,12 @@ public void cancelTasks() {
771
JOptionPane.showMessageDialog(null,
772
"Download canceled", "Warning", JOptionPane.WARNING_MESSAGE);
773
774
- //reset progress bar
775
- progressBar.setValue(0);
776
- progressBarPlatform.setValue(0);
+ //re-query:
+ actionButton.setText("Refreshing packages. . . ");
+ actionButtonPlatform.setText("Refreshing packages. . . ");
777
+ queryTask = new QueryTask();
778
+ queryTask.addPropertyChangeListener(SDKUpdater.this);
779
+ queryTask.execute();
780
}
781
782
0 commit comments