Changeset 5144


Ignore:
Timestamp:
Mar 15, 2015, 2:51:29 AM (10 years ago)
Author:
ldelgass
Message:

merge r4776 from trunk

Location:
branches/1.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/1.4

    • Property svn:mergeinfo changed
      /trunkmerged: 4776
  • branches/1.4/gui/scripts/flowvisviewer.tcl

    r5143 r5144  
    747747                if { ![info exists _limits($axis)] } {
    748748                    set _limits($axis) [list $min $max]
    749                 } else {
    750                     foreach {amin amax} $_limits($axis) break
    751                     if {$min < $amin} {
    752                         set amin $min
    753                     }
    754                     if {$max > $amax} {
    755                         set amax $max
    756                     }
    757                     set _limits($axis) [list $amin $amax]
     749                    continue
    758750                }
     751                foreach {amin amax} $_limits($axis) break
     752                if {$min < $amin} {
     753                    set amin $min
     754                }
     755                if {$max > $amax} {
     756                    set amax $max
     757                }
     758                set _limits($axis) [list $amin $amax]
    759759            }
    760760        }
Note: See TracChangeset for help on using the changeset viewer.