>>575
> 全く関係無いんだけど、WatchRecordingsで番組のタイトルに空白を含む場合
> グループは出来るんだけど番組の所が空欄になっちゃうんだよね。

たぶんこれの話かな。
でもActive EIT Scan使ってるせいかタイトルに"第一話"とか付いてて結局グループに分けられない。
一つ一つバラバラ。
それ用の修正もあるんだけど…必要な人って居る?

--- a/mythtv/programs/mythfrontend/playbackbox.cpp
+++ b/mythtv/programs/mythfrontend/playbackbox.cpp
@@ -1587,15 +1587,16 @@ bool PlaybackBox::UpdateUILists(void)
    if (!sortedList.contains(sTitle))
    sortedList[sTitle] = p->GetTitle();
-   m_progLists[sortedList[sTitle].toLower()].push_front(p);
-   m_progLists[sortedList[sTitle].toLower()].setAutoDelete(false);
+   m_progLists[sortedList[sTitle].toLower().simplified()].push_front(p);
+   m_progLists[sortedList[sTitle].toLower().simplified()].setAutoDelete(false);
    }