Skip to content

Commit 1a3ea50

Browse files
authored
Merge pull request #1002 from Stefterv/sort-examples-by-display-name
Sort examples by display name
2 parents 5c478a1 + cd6cfd9 commit 1a3ea50

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

app/src/processing/app/ui/ExamplesFrame.java

+8-3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
import java.awt.event.MouseEvent;
3434
import java.io.File;
3535
import java.io.IOException;
36+
import java.util.ArrayList;
37+
import java.util.Comparator;
3638
import java.util.Enumeration;
3739

3840
import javax.swing.Box;
@@ -57,6 +59,7 @@
5759
import processing.app.Platform;
5860
import processing.app.Preferences;
5961
import processing.app.SketchReference;
62+
import processing.app.contrib.Contribution;
6063
import processing.app.contrib.ContributionManager;
6164
import processing.app.contrib.ContributionType;
6265
import processing.app.contrib.ExamplesContribution;
@@ -313,9 +316,11 @@ protected DefaultMutableTreeNode buildTree() {
313316
}
314317

315318
// 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) {
319324
if (lib.hasExamples()) {
320325
DefaultMutableTreeNode libNode =
321326
new DefaultMutableTreeNode(lib.getName());

0 commit comments

Comments
 (0)