Ticket #4448: add_finder_keybinding.diff

File add_finder_keybinding.diff, 1.7 KB (added by blake0 <blake.zero@…>, 16 years ago)
  • mythtv/libs/libmythtv/guidegrid.cpp

     
    423423                jumpToChannelDeleteLastDigit();
    424424            else if (action == "NEXTFAV" || action == "4")
    425425                toggleGuideListing();
    426             else if (action == "6")
     426            else if (action == "FINDER" || action == "6")
    427427                showProgFinder();
    428428            else if (action == "MENU")
    429429                enter();                   
  • mythtv/libs/libmythtv/tv_play.cpp

     
    272272            "favorite", "?");
    273273    REG_KEY("TV Frontend", "TOGGLEEPGORDER", "Reverse the channel order "
    274274            "in the program guide", "0");
     275    REG_KEY("TV Frontend", "FINDER", "Show the Program Finder", "#");
     276    REG_KEY("TV Frontend", "GUIDE", "Show the Program Guide", "S");
    275277
    276278    REG_KEY("TV Frontend", "NEXTFAV", "Toggle showing all channels or just "
    277279            "favorites in the program guide.", "/");
  • mythtv/libs/libmythtv/progfind.cpp

     
    208208            escape();
    209209        else if (action == "TOGGLERECORD")
    210210            quickRecord();
    211         else if (action == "4")
     211        else if (action == "GUIDE" || action == "4")
    212212            showGuide();
    213213        else
    214214            handled = false;