Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bump to 10 recent projects
  • Loading branch information
NathanW2 committed Aug 27, 2015
1 parent 7de000d commit 349b68b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -2787,7 +2787,7 @@ void QgisApp::saveRecentProjectPath( QString projectPath, bool savePreviewImage

// Keep the list to 8 items by trimming excess off the bottom
// And remove the associated image
while ( mRecentProjects.count() > 8 )
while ( mRecentProjects.count() > 10 )
{
QFile( mRecentProjects.takeLast().previewImagePath ).remove();
}
Expand Down

3 comments on commit 349b68b

@3nids
Copy link
Member

@3nids 3nids commented on 349b68b Aug 27, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

now, when starting QGIS with a project (passing project path as argument), the homepage is kept above the canvas......even when opening a new project...
not cool!

this is not due to this commit though

@NathanW2
Copy link
Member Author

@NathanW2 NathanW2 commented on 349b68b Aug 27, 2015 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@3nids
Copy link
Member

@3nids 3nids commented on 349b68b Aug 27, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

perfect, thanks!

Please sign in to comment.