[mythtv-commits] Ticket #1803: Configuring number of channels causes channel names to be missaligned with program information.

MythTV mythtv at cvs.mythtv.org
Sat May 13 23:19:21 EDT 2006


#1803: Configuring number of channels causes channel names to be missaligned with
program information.
-----------------------+----------------------------------------------------
 Reporter:  anonymous  |        Owner:  ijr 
     Type:  defect     |       Status:  new 
 Priority:  minor      |    Milestone:      
Component:  mythtv     |      Version:  0.19
 Severity:  medium     |   Resolution:      
-----------------------+----------------------------------------------------
Changes (by dscoular at gmail.com):

  * cc:  => dscoular at gmail.com

Comment:

 Hi Llyric,
 I've verified that this is a bug. I modified line 251 from:


 {{{

     if (DISPLAY_CHANS > maxchannel)
         DISPLAY_CHANS = maxchannel;
 }}}
 to:

 {{{

     if (DISPLAY_CHANS > maxchannel + 1) // DUG FIXME
         DISPLAY_CHANS = maxchannel;

 }}}

 And it fixes the issue for me. However, there a number of these exact same
 if statements through
 this file and I suspect they should all be changed to the above.

 Cheers,

 Doug

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/1803>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list