[mythtv-commits] Ticket #1174: ATSC pane in scanwizardhelpers is too narrow

MythTV mythtv at cvs.mythtv.org
Wed Feb 1 06:29:23 UTC 2006


#1174: ATSC pane in scanwizardhelpers is too narrow
----------------------+-----------------------------------------------------
 Reporter:  rkulagow  |       Owner:  danielk
     Type:  patch     |      Status:  new    
 Priority:  minor     |   Milestone:         
Component:  mythtv    |     Version:         
 Severity:  medium    |  
----------------------+-----------------------------------------------------
 Using a horizontal group makes the modulation type end up off-screen at
 1024x768.  Made the 4 elements into a vertical group.

 {{{
 Index: scanwizardhelpers.h
 ===================================================================
 --- scanwizardhelpers.h (revision 8806)
 +++ scanwizardhelpers.h (working copy)
 @@ -653,11 +653,8 @@
    public:
      ATSCPane() : VerticalConfigurationGroup(false,false,true,false)
      {
 -        HorizontalConfigurationGroup *hg =
 -            new HorizontalConfigurationGroup(false,false,true,true);
 -        hg->addChild(atsc_table        = new ScanFrequencyTable());
 -        hg->addChild(atsc_modulation   = new ScanATSCModulation());
 -        addChild(hg);
 +        addChild(atsc_table            = new ScanFrequencyTable());
 +        addChild(atsc_modulation       = new ScanATSCModulation());
          addChild(atsc_format           = new ScanATSCChannelFormat());
          addChild(old_channel_treatment = new ScanOldChannelTreatment());
      }
 }}}

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


More information about the mythtv-commits mailing list