Merge "Group editor on tablet"
diff --git a/src/com/android/contacts/group/GroupBrowseListFragment.java b/src/com/android/contacts/group/GroupBrowseListFragment.java
index afa13fa..95a85b6 100644
--- a/src/com/android/contacts/group/GroupBrowseListFragment.java
+++ b/src/com/android/contacts/group/GroupBrowseListFragment.java
@@ -193,6 +193,12 @@
                     ? false
                     : mGroupListCursor.getInt(GroupMetaDataLoader.FAVORITES) != 0;
 
+            // Don't show the "auto-added" (i.e. My Contacts) or "favorites" groups because
+            // they show up elsewhere in the app
+            if (defaultGroup || favorites) {
+                continue;
+            }
+
             GroupMetaData newGroup = new GroupMetaData(accountName, accountType, groupId, title,
                     defaultGroup, favorites);