Ignore:
Timestamp:
Aug 14, 2010, 7:57:16 PM (14 years ago)
Author:
mmc
Message:

Fixed the bug report dialog to give the user the option of filing a
ticket, instead of filing something automatically right away. There's
now a button to "Show Details..." so the user can see what sort of
information is being included in the bug report.

Fixed the progress bar to honor the -length option and set its overall
size properly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/progress.tcl

    r1342 r1861  
    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.