From b583697e0b832223e797223246a10b943836beda Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 17 Aug 2016 17:08:14 +0200 Subject: [PATCH] Revert "Only sort ideLibs if it's not empty" This reverts commit 9b324bc9cc5c101f403a994d5e53160ee89aa7c6. --- app/src/processing/app/Base.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 8e573eb59..7dbcabca6 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -1262,8 +1262,8 @@ public class Base { } // Add examples from libraries + ideLibs.sort(); if (!ideLibs.isEmpty()) { - ideLibs.sort(); label = new JMenuItem(tr("Examples from Built-in Libraries")); label.setEnabled(false); menu.add(label);