File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1152,14 +1152,12 @@ void QgisApp::readSettings()
11521152 data.path = project;
11531153 data.title = project;
11541154
1155- mRecentProjects .prepend ( data );
1155+ mRecentProjects .append ( data );
11561156 }
11571157
11581158 settings.beginGroup ( " /UI/recentProjects" );
11591159 QStringList projectKeys = settings.childGroups ();
11601160
1161-
1162-
11631161 Q_FOREACH ( const QString& key, projectKeys )
11641162 {
11651163 QgsWelcomePageItemsModel::RecentProjectData data;
@@ -1168,7 +1166,7 @@ void QgisApp::readSettings()
11681166 data.path = settings.value ( " path" ).toString ();
11691167 data.previewImagePath = settings.value ( " previewImage" ).toString ();
11701168 settings.endGroup ();
1171- mRecentProjects .prepend ( data );
1169+ mRecentProjects .append ( data );
11721170 }
11731171 settings.endGroup ();
11741172
You can’t perform that action at this time.
0 commit comments