Ticket #5194: livetv_browsemode-fix.patch

File livetv_browsemode-fix.patch, 825 bytes (added by nettibug@…, 16 years ago)

Fixes livetv browsermode channelchange

  • libs/libmythtv/tv_play.cpp

     
    50015001        if (browsemode)
    50025002        {
    50035003            commited = true;
     5004
     5005            // Fix: for LiveTV browse-mode where channel select
     5006            // jumped to first channel
     5007            // browsechannum contains correct channel, but
     5008            // BrowseChannel clears it with channum which is empty
     5009            // is BroseChannel a necessary call?
     5010            if (channum.isEmpty()) {
     5011                channum = Q3DeepCopy<QString>(browsechannum);
     5012            }
    50045013            BrowseChannel(channum);
    50055014            if (activenvp == nvp && GetOSD())
    50065015                GetOSD()->HideSet("channel_number");