diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 3990aa07e..23e549e89 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -81,7 +81,7 @@ public class Base { public static final Predicate CONTRIBUTED = library -> library.getTypes() == null || library.getTypes().isEmpty() || library.getTypes().contains("Contributed"); public static final Predicate RETIRED = library -> library.getTypes() != null && library.getTypes().contains("Retired"); - private static final int RECENT_SKETCHES_MAX_SIZE = 5; + private static final int RECENT_SKETCHES_MAX_SIZE = 10; private static boolean commandLine; public static volatile Base INSTANCE;