Index: programs/mythfrontend/playbackbox.cpp
===================================================================
--- programs/mythfrontend/playbackbox.cpp.orig
+++ programs/mythfrontend/playbackbox.cpp
@@ -400,6 +400,7 @@ bool PlaybackBox::Create()
     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"));
 
@@ -422,6 +423,9 @@ bool PlaybackBox::Create()
     connect(m_recordingList, SIGNAL(itemClicked(MythUIButtonListItem*)),
             SLOT(playSelected(MythUIButtonListItem*)));
 
+    if (m_recgroupList)
+        m_recgroupList->SetCanTakeFocus(false);
+
     if (!m_player && !m_recGroupPassword.isEmpty())
         displayRecGroup(m_recGroup);
     else if (gContext->GetNumSetting("QueryInitialFilter", 0) == 1)
@@ -752,6 +756,44 @@ void PlaybackBox::updateUsage()
     }
 }
 
+/*
+ * \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)
+        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)
+        {
+            state = "selected";
+            m_recgroupList->SetItemCurrent(item);
+        }
+        else
+            state = "active";
+
+        item->SetText(name, "buttonitem", state);
+    }
+}
+
 void PlaybackBox::updateGroupList()
 {
     m_groupList->Reset();
@@ -1003,6 +1045,8 @@ bool PlaybackBox::FillList(bool useCache
     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);
@@ -1465,6 +1509,7 @@ bool PlaybackBox::FillList(bool useCache
         }
     }
 
+    updateRecGroupList();
     updateGroupList();
     updateUsage();
 
Index: programs/mythfrontend/playbackbox.h
===================================================================
--- programs/mythfrontend/playbackbox.h.orig
+++ programs/mythfrontend/playbackbox.h
@@ -293,6 +293,7 @@ class PlaybackBox : public MythScreenTyp
     QString getRecGroupPassword(const QString &recGroup);
     void fillRecGroupPasswordCache(void);
 
+    void updateRecGroupList();
     void updateGroupList();
     void updateIcons(const ProgramInfo *pginfo = NULL);
     void updateUsage();
@@ -304,6 +305,7 @@ class PlaybackBox : public MythScreenTyp
 
     void HandlePreviewEvent(const ProgramInfo &evinfo);
 
+    MythUIButtonList *m_recgroupList;
     MythUIButtonList *m_groupList;
     MythUIButtonList *m_recordingList;
 
