jonaspm 10 years ago
parent
commit
1ba34d76cf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Attic/AtomicEditorReference/Source/AEPreferences.cpp

+ 1 - 1
Attic/AtomicEditorReference/Source/AEPreferences.cpp

@@ -178,7 +178,7 @@ void AEPreferences::UpdateRecentFiles(bool write)
 
         recentProjects.Push(path);
 
-        if (recentProjects.Size() == 10)
+        if (recentProjects.Size() > 0 && recentProjects.Size() <= 15)
             break;
     }