Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRolf Theunissen2021-06-08 11:27:57 +0000
committerAndrey Loskutov2021-06-10 09:56:30 +0000
commit5507b2ce5ebfa4b9ac97cd40c4fae7602f174855 (patch)
treed5d4c15e022aa3ad69d33d63fb528481f6152b09
parent10fe2a91f583a52f27f4f145b6a3cdbeaaf97843 (diff)
downloadeclipse.platform.ui-5507b2ce5ebfa4b9ac97cd40c4fae7602f174855.tar.gz
eclipse.platform.ui-5507b2ce5ebfa4b9ac97cd40c4fae7602f174855.tar.xz
eclipse.platform.ui-5507b2ce5ebfa4b9ac97cd40c4fae7602f174855.zip
Bug 574061 - Increase maximum allowable size for recently opened files
list Increase the maximum to 100 files, for users that like to see more files. The default remains at 20 files. Change-Id: I7a765d24e18bda6b77cba17f27d69c47c72186ad Signed-off-by: Rolf Theunissen <rolf.theunissen@gmail.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.ui/+/181581 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Andrey Loskutov <loskutov@gmx.de>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorHistory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorHistory.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorHistory.java
index 8c9187f0333..0c5007e2a43 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorHistory.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorHistory.java
@@ -31,7 +31,7 @@ public class EditorHistory {
/**
* The maximum of entries in the history.
*/
- public static final int MAX_SIZE = 20;
+ public static final int MAX_SIZE = 100;
/**
* The list of editor entries, in FIFO order.

Back to the top