We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98cdc78 commit 7de6c6bCopy full SHA for 7de6c6b
1 file changed
src/application/service/recent_files_manager.cpp
@@ -39,7 +39,7 @@ void RecentFilesManager::addRecentFile(QString filePath)
39
m_recentFiles.removeAll(filePath);
40
m_recentFiles.push_front(filePath);
41
42
- const int maxFileCount = 8;
+ const int maxFileCount = 100;
43
while (m_recentFiles.size() > maxFileCount) {
44
m_recentFiles.pop_back();
45
}
0 commit comments