Browse Source

patch.cpp: increase recent list to 20

pull/1942/head
Steve Russell GitHub 1 month ago
parent
commit
3323e691e6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/patch.cpp

+ 1
- 1
src/patch.cpp View File

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




Loading…
Cancel
Save