diff options
| author | Jules Aguillon | 2025-06-14 11:12:21 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2025-06-14 11:12:21 +0200 |
| commit | f9b844e98864fc1223687c6836a26e773a80c99f (patch) | |
| tree | 61120f366e03bd1e66db39372f087f3c8777f795 /srcs | |
| parent | 6f0244a29e3036e2ea25bc753e9768ac738b04c5 (diff) | |
| download | unexpected-keyboard-f9b844e98864fc1223687c6836a26e773a80c99f.tar.gz unexpected-keyboard-f9b844e98864fc1223687c6836a26e773a80c99f.zip | |
Increase the clipboard history size to 6
Diffstat (limited to 'srcs')
| -rw-r--r-- | srcs/juloo.keyboard2/ClipboardHistoryService.java | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
