Ignore:
Timestamp:
Sep 10, 2010 8:10:36 AM (14 years ago)
Author:
gah
Message:
 
Location:
branches/blt4/gui/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/gui/scripts/panes.tcl

    r1373 r1907  
    325325                lappend flist $f
    326326                if {[info exists itk_component($sash)]} {
    327                     set h [expr {$h - [winfo height $itk_component($sash)]}]
     327                    set h [expr {$h - [winfo reqheight $itk_component($sash)]}]
    328328                }
    329329            } else {
     
    373373                lappend flist $f
    374374                if {[info exists itk_component($sash)]} {
    375                     set w [expr {$w - [winfo width $itk_component($sash)]}]
     375                    set w [expr {$w - [winfo reqwidth $itk_component($sash)]}]
    376376                }
    377377            } else {
  • branches/blt4/gui/scripts/progress.tcl

    r1342 r1907  
    5656
    5757    itk_component add message {
    58         label $itk_interior.mesg -anchor w
     58        label $itk_interior.mesg -anchor w -width 1
    5959    }
    6060
     
    120120    if {[string length $_message] > 0} {
    121121        $itk_component(message) configure -text $_message
    122         pack $itk_component(message) -anchor w
     122        pack $itk_component(message) -fill x
    123123    } else {
    124124        pack forget $itk_component(message)
     
    162162itcl::configbody Rappture::Progress::length {
    163163    set w [winfo pixels $itk_component(hull) $itk_option(-length)]
    164     component hull configure -width $w
     164    $itk_component(bar) configure -width $w
    165165}
Note: See TracChangeset for help on using the changeset viewer.