Changeset 5457 for branches/1.3


Ignore:
Timestamp:
May 7, 2015, 4:13:49 AM (9 years ago)
Author:
ldelgass
Message:

fix mismerge issue in flowvis

Location:
branches/1.3/gui/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/1.3/gui/scripts/field.tcl

    r5433 r5457  
    11421142# extents --
    11431143#
    1144 # Returns if the field is a unirect2d object.
     1144# Returns the extents of the named component
    11451145#
    11461146itcl::body Rappture::Field::extents {{cname -overall}} {
     
    11481148        set max 0
    11491149        foreach cname [$_field children -type component] {
    1150             if { ![info exists _comp2unirect3d($cname)] &&
    1151                  ![info exists _comp2extents($cname)] } {
     1150            if { ![info exists _comp2extents($cname)] } {
    11521151                continue
    11531152            }
  • branches/1.3/gui/scripts/flowvisviewer.tcl

    r5456 r5457  
    11021102    set dataobj [lindex $parts 0]
    11031103    set _serverDatasets($tag) 0
    1104     set _limits($tag-min)  $values(min);  # Minimum value of the volume.
    1105     set _limits($tag-max)  $values(max);  # Maximum value of the volume.
     1104    set _limits($tag-min)  $info(min);  # Minimum value of the volume.
     1105    set _limits($tag-max)  $info(max);  # Maximum value of the volume.
    11061106
    11071107    unset _recvdDatasets($tag)
Note: See TracChangeset for help on using the changeset viewer.