Changeset 1683 for branches


Ignore:
Timestamp:
Apr 1, 2010 11:19:04 AM (14 years ago)
Author:
gah
Message:
 
File:
1 edited

Legend:

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

    r1644 r1683  
    206206    Rappture::Combobox $inner.format -width 15 -editable no
    207207    $inner.format choices insert end \
    208         "%.3g"  "Auto"         \
     208        "%.6g"  "Auto"         \
    209209        "%.0f"  "X"          \
    210210        "%.1f"  "X.X"          \
     
    231231
    232232    foreach axis {x y} {
    233         set _axisPopup(format-$axis) "%.3g"
     233        set _axisPopup(format-$axis) "%.6g"
    234234    }
    235235    _axis scale x linear
     
    662662
    663663    foreach axis $all {
    664         set _axisPopup(format-$axis) "%.3g"
     664        set _axisPopup(format-$axis) "%.6g"
    665665
    666666        $g axis bind $axis <Enter> \
     
    14421442
    14431443            if {[$itk_component(plot) axis cget $axis -logscale]} {
    1444                 set fmt "%.3g"
     1444                set fmt "%.6g"
    14451445            } else {
    14461446                set fmt $_axisPopup(format-$axis)
Note: See TracChangeset for help on using the changeset viewer.