Ticket #6665: 6665-custom-record-deaf-signing-option-trunk.diff

File 6665-custom-record-deaf-signing-option-trunk.diff, 1.2 KB (added by Nick Morrott <knowledgejunkie <at> gmail <dot> com>, 15 years ago)

Adds deaf signing filtering to screens in trunk

  • libs/libmythtv/customedit.cpp

     
    257257    m_cfrom << "";
    258258    m_csql << "FIND_IN_SET('AVC', program.videoprop) = 0 ";
    259259
     260    m_clause->insertItem(tr("Shows with deaf signing"));
     261    m_cfrom << "";
     262    m_csql << "FIND_IN_SET('SIGNED', program.subtitletypes) > 0 ";
     263           
    260264    m_clause->insertItem(tr("Limit by category"));
    261265    m_cfrom << "";
    262266    if (p->category > "")
  • programs/mythfrontend/custompriority.cpp

     
    172172                    "program.hdtv > 0 ");
    173173    examples.insert(tr("Close Captioned priority"),
    174174                    "program.closecaptioned > 0 ");
     175    examples.insert(tr("Shows with deaf signing"),
     176                    "FIND_IN_SET('SIGNED', program.subtitletypes) > 0 ");
    175177    examples.insert(tr("New episodes only"),
    176178                    "program.previouslyshown = 0 ");
    177179    examples.insert(tr("Modify unidentified episodes"),