Index: libs/ardour/recent_sessions.cc
===================================================================
--- libs/ardour/recent_sessions.cc	(revision 3512)
+++ libs/ardour/recent_sessions.cc	(working copy)
@@ -36,6 +36,8 @@
 using namespace ARDOUR;
 using namespace PBD;
 
+static const unsigned int max_recent_sessions = 50;
+
 int
 ARDOUR::read_recent_sessions (RecentSessions& rs)
 {
@@ -114,8 +116,8 @@
 	
 	rs.push_front (newpair);
 
-	if (rs.size() > 10) {
-		rs.erase(rs.begin()+10, rs.end());
+	if (rs.size() > max_recent_sessions) {
+		rs.erase(rs.begin() + max_recent_sessions, rs.end());
 	}
 
 	return ARDOUR::write_recent_sessions (rs);
