From d969ae96bda86245c4298b6933be2f17f120f5d3 Mon Sep 17 00:00:00 2001 From: twanvl Date: Sun, 3 Aug 2008 20:02:49 +0000 Subject: [PATCH] remember 9 recent sets instead of only 4 git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1043 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/data/settings.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/settings.hpp b/src/data/settings.hpp index 66db6c61..2a1be1f2 100644 --- a/src/data/settings.hpp +++ b/src/data/settings.hpp @@ -124,7 +124,7 @@ class Settings { // --------------------------------------------------- : Recently opened sets vector recent_sets; - static const UInt max_recent_sets = 4; // store this many recent sets + static const UInt max_recent_sets = 9; // store this many recent sets /// Add a file to the list of recent files void addRecentFile(const String& filename);