Index: programs/mythfrontend/playbackbox.cpp
===================================================================
--- programs/mythfrontend/playbackbox.cpp	(revision 23048)
+++ programs/mythfrontend/playbackbox.cpp	(working copy)
@@ -474,6 +474,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"));
 
@@ -491,6 +492,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*)),
@@ -993,6 +997,40 @@
     }
 }
 
+/*
+ * \fn PlaybackBox::updateUIRecGroupList(void)
+ * \brief called when the list of recording groups may have changed
+ */
+void PlaybackBox::UpdateUIRecGroupList(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::UpdateUIGroupList(const QStringList &groupPreferences)
 {
     m_groupList->Reset();
@@ -1235,6 +1273,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);
@@ -1678,6 +1718,7 @@
         }
     }
 
+    UpdateUIRecGroupList();
     UpdateUIGroupList(groupSelPref);
     UpdateUsageUI();
 
Index: programs/mythfrontend/playbackbox.h
===================================================================
--- programs/mythfrontend/playbackbox.h	(revision 23048)
+++ programs/mythfrontend/playbackbox.h	(working copy)
@@ -259,6 +259,7 @@
   private:
     bool UpdateUILists(void);
     void UpdateUIGroupList(const QStringList &groupPreferences);
+    void UpdateUIRecGroupList(void);
 
     void UpdateProgressBar(void);
 
@@ -323,6 +324,7 @@
     QString CreateProgramInfoString(const ProgramInfo &program) const;
 
   private:
+    MythUIButtonList *m_recgroupList;
     MythUIButtonList *m_groupList;
     MythUIButtonList *m_recordingList;
 
