configManager: save config every time recent project list is updated

fixes #1014
This commit is contained in:
Hannu Haahti
2014-07-25 10:42:50 +03:00
parent 1b8243ccac
commit be2e235c7a

View File

@@ -159,6 +159,7 @@ void configManager::addRecentlyOpenedProject( const QString & _file )
m_recentlyOpenedProjects.removeLast();
}
m_recentlyOpenedProjects.push_front( _file );
configManager::inst()->saveConfigFile();
}