mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
contribution-manager: No visual feedback of update/install progress #4105
This commit is contained in:
@@ -318,8 +318,9 @@ implements Scrollable, ContributionListing.ChangeListener {
|
||||
icon = incompatibleIcon;
|
||||
}
|
||||
}
|
||||
if ((panelByContribution.get(contribution)).updateInProgress) {
|
||||
// Display "Loading icon" if download in progress
|
||||
if ((panelByContribution.get(contribution)).updateInProgress ||
|
||||
(panelByContribution.get(contribution)).installInProgress) {
|
||||
// Display "Loading icon" if download/install in progress
|
||||
label.setIcon(downloadingIcon);
|
||||
} else {
|
||||
label.setIcon(icon);
|
||||
|
||||
@@ -200,8 +200,9 @@ public class UpdateListPanel extends ListPanel {
|
||||
icon = incompatibleIcon;
|
||||
}
|
||||
}
|
||||
if ((panelByContribution.get(entry)).updateInProgress) {
|
||||
// Display "Loading icon" if download in progress
|
||||
if ((panelByContribution.get(entry)).updateInProgress ||
|
||||
(panelByContribution.get(entry)).installInProgress) {
|
||||
// Display "Loading icon" if download/install in progress
|
||||
icon = downloadingIcon;
|
||||
}
|
||||
model.addRow(new Object[] {
|
||||
|
||||
Reference in New Issue
Block a user