From 695672ce9ceb96e9fce913e32b9492500051e4d5 Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Tue, 17 Aug 2021 23:08:22 -0600 Subject: [PATCH] support larger sentences by default, possibly with repetition (since builtin filter is disabled by default) --- GUI/host/textthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI/host/textthread.h b/GUI/host/textthread.h index 029811e..f1b0c37 100644 --- a/GUI/host/textthread.h +++ b/GUI/host/textthread.h @@ -10,7 +10,7 @@ public: inline static bool filterRepetition = false; inline static int flushDelay = 500; // flush every 500ms by default - inline static int maxBufferSize = 1000; + inline static int maxBufferSize = 3000; inline static int maxHistorySize = 10'000'000; TextThread(ThreadParam tp, HookParam hp, std::optional name = {});