From f9b844e98864fc1223687c6836a26e773a80c99f Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sat, 14 Jun 2025 11:12:21 +0200 Subject: [PATCH] Increase the clipboard history size to 6 --- srcs/juloo.keyboard2/ClipboardHistoryService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcs/juloo.keyboard2/ClipboardHistoryService.java b/srcs/juloo.keyboard2/ClipboardHistoryService.java index 1ce644c..9554bca 100644 --- a/srcs/juloo.keyboard2/ClipboardHistoryService.java +++ b/srcs/juloo.keyboard2/ClipboardHistoryService.java @@ -49,7 +49,7 @@ public final class ClipboardHistoryService /** The maximum size limits the amount of user data stored in memory but also gives a sense to the user that the history is not persisted and can be forgotten as soon as the app stops. */ - public static final int MAX_HISTORY_SIZE = 3; + public static final int MAX_HISTORY_SIZE = 6; /** Time in ms until history entries expire. */ public static final long HISTORY_TTL_MS = 5 * 60 * 1000;