Ignore:
Timestamp:
Jan 26, 2010, 10:14:14 PM (15 years ago)
Author:
gah
Message:
 
Location:
branches/blt4/gui/scripts
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/gui/scripts/Makefile.in

    r1624 r1643  
    1414INSTALL         = @INSTALL@
    1515MKDIR_P         = @MKDIR_P@
    16 TCLSH           = $(bindir)/tclsh8.4
     16TCLSH           = $(bindir)/tclsh8.5
    1717VPATH           = $(srcdir)
    1818PACKAGE_VERSION = @PACKAGE_VERSION@
  • branches/blt4/gui/scripts/sidebarframe.tcl

    r1399 r1643  
    197197        blt::tabset $itk_component(controlbar).tabs \
    198198            -highlightthickness 0 -tearoff 0 -side left \
    199             -bd 0 -gap 0 -tabborderwidth 1 \
     199            -bd 0 -gap 0 -outerborderwidth 1 \
    200200            -outerpad 1
    201201    } {
  • branches/blt4/gui/scripts/xylegend.tcl

    r1636 r1643  
    226226    set data(delete) [expr { $flags == "-delete" }]
    227227    set node [$tree_ insert root -at 0 -label $elem -data [array get data]]
    228     $itk_component(legend) entry configure $node -label $label -icon $im \
    229         -activeicon $im
     228    $itk_component(legend) entry configure $node -label $label -icon $im
    230229    update idletasks
    231230    return $node
  • branches/blt4/gui/scripts/xyresult.tcl

    r1614 r1643  
    250250    }
    251251    pack $itk_component(legend) -expand yes -fill both
    252 
    253252    after idle [subst {
    254253        update idletasks
    255         $itk_component(legend) reset
     254        #$itk_component(legend) reset
    256255    }]
    257256
     
    15551554itcl::configbody Rappture::XyResult::gridcolor {
    15561555    if {"" == $itk_option(-gridcolor)} {
    1557         $itk_component(plot) grid off
     1556        foreach axis [$itk_component(plot) axis names] {
     1557            $itk_component(plot) axis configure -grid off
     1558        }
    15581559    } else {
    1559         $itk_component(plot) grid configure -color $itk_option(-gridcolor)
    1560         $itk_component(plot) grid on
     1560        foreach axis [$itk_component(plot) axis names] {
     1561            $itk_component(plot) axis configure \
     1562                -gridcolor $itk_option(-gridcolor) -grid on
     1563        }
    15611564    }
    15621565}
Note: See TracChangeset for help on using the changeset viewer.