mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Merge pull request #2598 from joelmoniz/correctContribColor
Line coloring is now proper for filtered contributions (both when comboBox and filterFields are used for filtering)
This commit is contained in:
@@ -110,7 +110,7 @@ public class ContributionManagerDialog {
|
||||
status.setErrorMessage("Connection timed out while " +
|
||||
"downloading the contribution list.");
|
||||
} else {
|
||||
status.setErrorMessage("Could not download the list" +
|
||||
status.setErrorMessage("Could not download the list " +
|
||||
"of available contributions.");
|
||||
}
|
||||
exception.printStackTrace();
|
||||
@@ -167,6 +167,7 @@ public class ContributionManagerDialog {
|
||||
category = null;
|
||||
}
|
||||
filterLibraries(category, filterField.filters);
|
||||
contributionListPanel.updateColors();
|
||||
}
|
||||
});
|
||||
|
||||
@@ -423,6 +424,8 @@ public class ContributionManagerDialog {
|
||||
filter = filter.replaceAll("[^\\x30-\\x39^\\x61-\\x7a^\\x3a]", " ");
|
||||
filters = Arrays.asList(filter.split(" "));
|
||||
filterLibraries(category, filters);
|
||||
|
||||
contributionListPanel.updateColors();
|
||||
}
|
||||
|
||||
public String getFilterText() {
|
||||
|
||||
Reference in New Issue
Block a user