From 3323e691e6d5f521dbde5bf14684ec9a844a525d Mon Sep 17 00:00:00 2001 From: Steve Russell <41975381+SteveRussell33@users.noreply.github.com> Date: Mon, 31 Mar 2025 05:46:09 +0100 Subject: [PATCH] patch.cpp: increase recent list to 20 --- src/patch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/patch.cpp b/src/patch.cpp index 344a03e6..5077e5eb 100644 --- a/src/patch.cpp +++ b/src/patch.cpp @@ -458,7 +458,7 @@ void Manager::pushRecentPath(std::string path) { // Add path to top of recent patches recent.push_front(path); // Limit recent patches size - recent.resize(std::min((int) recent.size(), 10)); + recent.resize(std::min((int) recent.size(), 20)); }