Skip to content

Commit

Permalink
Fix #10590. 'Record This' and 'Change to Channel' options not working…
Browse files Browse the repository at this point in the history
… in Guide menu.
  • Loading branch information
stuartm committed Apr 13, 2012
1 parent 65f7da1 commit 19efff9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythfrontend/guidegrid.cpp
Expand Up @@ -1390,11 +1390,11 @@ void GuideGrid::customEvent(QEvent *event)
}
else if (resultid == "guidemenu")
{
if (resulttext == tr("Record"))
if (resulttext == tr("Record This"))
{
quickRecord();
}
else if (resulttext == tr("Change Channel"))
else if (resulttext == tr("Change to Channel"))
{
enter();
}
Expand Down

0 comments on commit 19efff9

Please sign in to comment.