Index: programs/mythfrontend/playbackbox.cpp
===================================================================
--- programs/mythfrontend/playbackbox.cpp	(revision 22689)
+++ programs/mythfrontend/playbackbox.cpp	(working copy)
@@ -436,6 +436,7 @@
     if (!LoadWindowFromXML("recordings-ui.xml", "watchrecordings", this))
         return false;
 
+    m_recgroupList  = dynamic_cast<MythUIButtonList *> (GetChild("recgroups"));
     m_groupList     = dynamic_cast<MythUIButtonList *> (GetChild("groups"));
     m_recordingList = dynamic_cast<MythUIButtonList *> (GetChild("recordings"));
 
@@ -452,6 +453,9 @@
         return false;
     }
 
+    if (m_recgroupList)
+        m_recgroupList->SetCanTakeFocus(false);
+
     connect(m_groupList, SIGNAL(itemSelected(MythUIButtonListItem*)),
             SLOT(updateRecList(MythUIButtonListItem*)));
     connect(m_groupList, SIGNAL(itemClicked(MythUIButtonListItem*)),
@@ -899,6 +903,40 @@
     }
 }
 
+/*
+ * \fn PlaybackBox::updateRecGroupList(void)
+ * \brief called when the list of recording groups may have changed
+ */
+void PlaybackBox::updateRecGroupList(void)
+{
+    if (m_recGroupIdx < 0 || !m_recgroupList || m_recGroups.size() < 2)
+        return;
+
+    m_recgroupList->Reset();
+
+    QStringList::iterator it;
+    int idx;
+    MythUIButtonListItem *item = NULL;
+    QString name;
+    QString state;
+
+    for (it = m_recGroups.begin(), idx = 0;
+         it != m_recGroups.end(); ++it, ++idx)
+    {
+        name = (*it).simplified();
+        if (name == "All Programs")
+            name = "All";
+
+        item = new MythUIButtonListItem(m_recgroupList, "",
+                                        qVariantFromValue(name.toLower()));
+
+        if (idx == m_recGroupIdx)
+            m_recgroupList->SetItemCurrent(item);
+
+        item->SetText(name);
+    }
+}
+
 void PlaybackBox::updateGroupList()
 {
     m_groupList->Reset();
@@ -1167,6 +1205,8 @@
     m_progLists.clear();
     m_recordingList->Reset();
     m_groupList->Reset();
+    if (m_recgroupList)
+        m_recgroupList->Reset();
     // Clear autoDelete for the "all" list since it will share the
     // objects with the title lists.
     m_progLists[""] = ProgramList(false);
@@ -1629,6 +1669,7 @@
         }
     }
 
+    updateRecGroupList();
     updateGroupList();
     updateUsage();
 
Index: programs/mythfrontend/playbackbox.h
===================================================================
--- programs/mythfrontend/playbackbox.h	(revision 22689)
+++ programs/mythfrontend/playbackbox.h	(working copy)
@@ -314,6 +314,7 @@
     QString findArtworkFile(QString &seriesID, QString &titleIn,
                             QString imagetype, QString host);
 
+    void updateRecGroupList();
     void updateGroupList();
     void updateIcons(const ProgramInfo *pginfo = NULL);
     void updateUsage();
@@ -327,6 +328,7 @@
 
     void ShowMenu(void);
 
+    MythUIButtonList *m_recgroupList;
     MythUIButtonList *m_groupList;
     MythUIButtonList *m_recordingList;
 
