From 600ef0a2f78862ac54531a6ee97db495191ba2a6 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 27 Oct 2025 18:20:07 -0400 Subject: [PATCH] Increase recent patch paths to 20. --- src/patch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/patch.cpp b/src/patch.cpp index cc5e0241..8b005e19 100644 --- a/src/patch.cpp +++ b/src/patch.cpp @@ -457,7 +457,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)); }