--- a/main-widget.cpp~ 2016-01-21 16:11:17.000000000 +0300 +++ b/main-widget.cpp 2016-01-28 14:32:38.614000000 +0300 @@ -148,7 +148,7 @@ MainWidget::MainWidget(QWidget *parent) bool sortByPresence = guiConfigGroup.readEntry("sort_by_presence", true); m_sortByPresenceAction->setActive(sortByPresence); - bool useGroups = guiConfigGroup.readEntry("use_groups", true); + bool useGroups = guiConfigGroup.readEntry("use_groups", false); m_contactsListView->toggleGroups(useGroups); m_contactsListView->toggleOfflineContacts(showOffline); m_contactsListView->toggleSortByPresence(sortByPresence); @@ -568,7 +568,7 @@ void MainWidget::setupActions(const KCon m_groupContactsActionGroup = new QActionGroup(this); m_groupContactsActionGroup->setExclusive(true); m_groupContactsActionGroup->addAction(createAction(i18n("Show Contacts by Groups"), m_contactsListView, SLOT(showGrouped()), - guiConfigGroup.readEntry("use_groups", true))); + guiConfigGroup.readEntry("use_groups", false))); QString useGroupsDisabledText; if (KTp::kpeopleEnabled()) { useGroupsDisabledText = i18n("Do Not Group"); @@ -577,7 +577,7 @@ void MainWidget::setupActions(const KCon useGroupsDisabledText = i18n("Show Contacts by Accounts"); } m_groupContactsActionGroup->addAction(createAction(useGroupsDisabledText, m_contactsListView, SLOT(showUngrouped()), - ! guiConfigGroup.readEntry("use_groups", true))); + ! guiConfigGroup.readEntry("use_groups", false))); m_showOfflineAction = new KDualAction(i18n("Show Offline Contacts"), i18n("Hide Offline Contacts"),