From e51fad5bd2fa50c103e5d9ce8a02df0b011160d6 Mon Sep 17 00:00:00 2001 From: Jari Sundell Date: Sun, 9 Aug 2026 16:56:14 +0900 Subject: [PATCH] Clean up comments in root.h Removed comments regarding input history size limitations. --- src/ui/root.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ui/root.h b/src/ui/root.h index b09bec1d..95c4cbca 100644 --- a/src/ui/root.h +++ b/src/ui/root.h @@ -54,9 +54,6 @@ public: typedef std::vector InputHistoryCategory; typedef std::map InputHistory; - // Every category holds this many entries, and the whole history is written to - // and read back from the session, so the useful range ends long before the - // point where resizing it becomes a memory problem. static constexpr int max_input_history_size = 4096; Root();