Browse Source

Increased limit

CPKreuz 4 years ago
parent
commit
f4b2a31cf6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      PixiEditor/Models/DataHolders/Document/Document.IO.cs

+ 1 - 1
PixiEditor/Models/DataHolders/Document/Document.IO.cs

@@ -64,7 +64,7 @@ namespace PixiEditor.Models.DataHolders
                 recentlyOpened.Move(index, 0);
             }
 
-            if (recentlyOpened.Count > 5)
+            if (recentlyOpened.Count > 10)
             {
                 for (int i = 4; i < recentlyOpened.Count; i++)
                 {