Ignore:
Timestamp:
Apr 15, 2015, 3:46:47 AM (9 years ago)
Author:
ldelgass
Message:

sync with 1.3 branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.4/gui/scripts/vtkvolumeviewer.tcl

    r5238 r5244  
    106106    private method ReceiveLegend { colormap title vmin vmax size }
    107107    private method RequestLegend {}
     108    private method Rotate {option x y}
    108109    private method SetColormap { dataobj comp }
    109     private method Rotate {option x y}
    110110    private method SetLegendTip { x y }
    111111    private method SetObjectStyle { dataobj comp }
     
    16401640
    16411641itcl::body Rappture::VtkVolumeViewer::BuildViewTab {} {
    1642     set fg [option get $itk_component(hull) font Font]
    1643     #set bfg [option get $itk_component(hull) boldFont Font]
     1642    set font [option get $itk_component(hull) font Font]
     1643    #set bfont [option get $itk_component(hull) boldFont Font]
    16441644
    16451645    set inner [$itk_component(main) insert end \
     
    17211721    ::scale $inner.material -from 0 -to 100 -orient horizontal \
    17221722        -variable [itcl::scope _settings(-volumematerial)] \
    1723         -showvalue off -command [itcl::code $this AdjustSetting -volumematerial]
     1723        -showvalue off \
     1724        -command [itcl::code $this AdjustSetting -volumematerial]
    17241725    label $inner.bright_l -text "Bright" -font $font
    17251726
     
    17531754
    17541755    blt::table $inner \
    1755         0,0 $inner.field_l   -anchor w -pady 2  \
     1756        0,0 $inner.field_l   -anchor w -pady 2 \
    17561757        0,1 $inner.field     -fill x   -pady 2 -cspan 3 \
    17571758        1,0 $inner.visibility -anchor w -pady 2 -cspan 4 \
     
    17641765        6,0 $inner.quality_l -anchor w -pady 2 -cspan 4 \
    17651766        7,0 $inner.quality   -fill x   -pady 2 -cspan 4 \
    1766         8,0 $inner.colormap_l -anchor w -pady 2  \
    1767         8,1 $inner.colormap   -fill x   -pady 2 -cspan 3 \
     1767        8,0 $inner.colormap_l -anchor w -pady 2 \
     1768        8,1 $inner.colormap   -fill x   -pady 2 -cspan 3
    17681769
    17691770    blt::table configure $inner r* c0 c1 c3 -resize none
     
    23222323}
    23232324
    2324 
    23252325# ----------------------------------------------------------------------
    23262326# USAGE: Slice move x|y|z <newval>
Note: See TracChangeset for help on using the changeset viewer.