Browse Source

Increase recent patch paths to 20.

tags/v2.6.5
Andrew Belt 3 months ago
parent
commit
600ef0a2f7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/patch.cpp

+ 1
- 1
src/patch.cpp View File

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




Loading…
Cancel
Save