Skip to content

Commit 7de6c6b

Browse files
committed
Increase max recent file count to 100
1 parent 98cdc78 commit 7de6c6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/application/service/recent_files_manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void RecentFilesManager::addRecentFile(QString filePath)
3939
m_recentFiles.removeAll(filePath);
4040
m_recentFiles.push_front(filePath);
4141

42-
const int maxFileCount = 8;
42+
const int maxFileCount = 100;
4343
while (m_recentFiles.size() > maxFileCount) {
4444
m_recentFiles.pop_back();
4545
}

0 commit comments

Comments
 (0)