Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix recording item disappearing from list when the subtitle has been …
…edited.
  • Loading branch information
stuartm committed Jan 31, 2011
1 parent b25ec2e commit 9590973
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mythtv/programs/mythfrontend/playbackbox.cpp
Expand Up @@ -4607,7 +4607,7 @@ void PlaybackBox::saveRecMetadata(const QString &newTitle,
QString groupname = m_groupList->GetItemCurrent()->GetData().toString();

if (groupname == pginfo->GetTitle().toLower() &&
newTitle != groupname)
newTitle != pginfo->GetTitle())
{
m_recordingList->RemoveItem(item);
}
Expand All @@ -4621,8 +4621,6 @@ void PlaybackBox::saveRecMetadata(const QString &newTitle,
item->SetText(tempSubTitle, "titlesubtitle");
item->SetText(newTitle, "title");
item->SetText(newSubtitle, "subtitle");

UpdateUIListItem(item, true); // Why?
}

RecordingInfo ri(*pginfo);
Expand Down

0 comments on commit 9590973

Please sign in to comment.