Changeset 1750 for trunk/gui


Ignore:
Timestamp:
Jun 7, 2010 4:16:07 PM (14 years ago)
Author:
gah
Message:

propagate type to settings for sequences (no scatter plot sequences)

File:
1 edited

Legend:

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

    r1713 r1750  
    568568    foreach dataobj [$_topmost value $_pos] {
    569569        set settings "-color autoreset -width 2"
    570         if {[catch {$dataobj hints style} style] == 0} {
     570        if { [catch {$dataobj hints style} style] == 0} {
    571571            eval lappend settings $style
    572572        }
     573        if { [catch {$dataobj hints type} type] == 0} {
     574            if {"" != $type} {
     575                lappend settings -type $type
     576            }
     577        }
    573578        $viewer add $dataobj $settings
    574579    }
Note: See TracChangeset for help on using the changeset viewer.