From 46973e8e8201380b85ca21e62a70e53e8315acf1 Mon Sep 17 00:00:00 2001 From: pvdk Date: Sat, 30 Nov 2013 12:08:37 +0100 Subject: [PATCH] Fix for Bug #982: unchecking addons is now saved to profile --- apps/launcher/datafilespage.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/launcher/datafilespage.cpp b/apps/launcher/datafilespage.cpp index 734277b97d..d5eb458f80 100644 --- a/apps/launcher/datafilespage.cpp +++ b/apps/launcher/datafilespage.cpp @@ -116,8 +116,7 @@ void Launcher::DataFilesPage::buildView() void Launcher::DataFilesPage::removeProfile(const QString &profile) { - mLauncherSettings.remove(QString("Profiles/") + profile + QString("/game")); - mLauncherSettings.remove(QString("Profiles/") + profile + QString("/addon")); + mLauncherSettings.remove(QString("Profiles/") + profile); } QAbstractItemModel *Launcher::DataFilesPage::profilesModel() const