File tree 1 file changed +8
-3
lines changed
app/src/processing/app/ui
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 33
33
import java .awt .event .MouseEvent ;
34
34
import java .io .File ;
35
35
import java .io .IOException ;
36
+ import java .util .ArrayList ;
37
+ import java .util .Comparator ;
36
38
import java .util .Enumeration ;
37
39
38
40
import javax .swing .Box ;
57
59
import processing .app .Platform ;
58
60
import processing .app .Preferences ;
59
61
import processing .app .SketchReference ;
62
+ import processing .app .contrib .Contribution ;
60
63
import processing .app .contrib .ContributionManager ;
61
64
import processing .app .contrib .ContributionType ;
62
65
import processing .app .contrib .ExamplesContribution ;
@@ -313,9 +316,11 @@ protected DefaultMutableTreeNode buildTree() {
313
316
}
314
317
315
318
// Get examples for third party libraries
316
- DefaultMutableTreeNode contributedLibExamples = new
317
- DefaultMutableTreeNode (Language .text ("examples.libraries" ));
318
- for (Library lib : mode .contribLibraries ) {
319
+ DefaultMutableTreeNode contributedLibExamples = new DefaultMutableTreeNode (Language .text ("examples.libraries" ));
320
+ var sortedContribLibs = new ArrayList <>(mode .contribLibraries );
321
+ // Sort the libraries by actual name (not the name of the folder)
322
+ sortedContribLibs .sort (Comparator .comparing (Contribution ::getName ));
323
+ for (Library lib : sortedContribLibs ) {
319
324
if (lib .hasExamples ()) {
320
325
DefaultMutableTreeNode libNode =
321
326
new DefaultMutableTreeNode (lib .getName ());
You can’t perform that action at this time.
0 commit comments