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)); }