Skip to content

Commit 375146c

Browse files
author
Federico Fissore
committed
Increasing Recent files list from 5 to 10 elements. Fixes arduino#4131
1 parent 1bed568 commit 375146c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/Base.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public class Base {
8181
public static final Predicate<UserLibrary> CONTRIBUTED = library -> library.getTypes() == null || library.getTypes().isEmpty() || library.getTypes().contains("Contributed");
8282
public static final Predicate<UserLibrary> RETIRED = library -> library.getTypes() != null && library.getTypes().contains("Retired");
8383

84-
private static final int RECENT_SKETCHES_MAX_SIZE = 5;
84+
private static final int RECENT_SKETCHES_MAX_SIZE = 10;
8585

8686
private static boolean commandLine;
8787
public static volatile Base INSTANCE;

0 commit comments

Comments
 (0)