Changed: Save when clicking on OK

This commit is contained in:
kervala 2016-03-12 22:00:43 +01:00
parent 62301dd8d1
commit 7e4081ab33
2 changed files with 3 additions and 0 deletions

View file

@ -50,6 +50,8 @@ CProfilesDialog::~CProfilesDialog()
void CProfilesDialog::accept()
{
saveProfile(m_currentProfileIndex);
m_model->save();
QDialog::accept();

View file

@ -43,6 +43,7 @@ bool CProfilesModel::removeRows(int row, int count, const QModelIndex &parent)
bool CProfilesModel::save() const
{
CConfigFile::getInstance()->setProfiles(m_profiles);
CConfigFile::getInstance()->save();
return true;
}