Changeset 1697


Ignore:
Timestamp:
Apr 18, 2010, 6:09:52 PM (14 years ago)
Author:
gah
Message:
 
Location:
branches/blt4
Files:
3 edited

Legend:

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

    r1695 r1697  
    8585            -highlightthickness 0 \
    8686            -tree $_tree \
    87             -font "Arial 9" \
    8887            -flat yes -separator /  \
    8988            -selectcommand [itcl::code $this _newValue]
     
    322321        if {$len > $max} { set max $len }
    323322    }
    324     $itk_component(tree) entry configure all -icon $_icon
     323    $itk_component(tree) configure -icon ""
     324    $itk_component(tree) entry configure all -icon ""
    325325    eval $_tree delete [$_tree tag nodes unused]
    326326    $itk_component(tree) configure -width $max
    327327    catch {
    328     if { ![$itk_component(tree) selection present] } {
    329         $itk_component(tree) selection set [$_tree firstchild root]
    330     }
    331     } err
    332     puts stderr "select=$err"
     328        if { ![$itk_component(tree) selection present] } {
     329            $itk_component(tree) selection set [$_tree firstchild root]
     330        }
     331    }
    333332}
    334333
  • branches/blt4/packages/vizservers/nanovis/Command.cpp

    r1558 r1697  
    749749}
    750750
     751/*
     752 * cutplane state $bool $axis vol,,,
     753 */
    751754static int
    752755CutplaneStateOp(ClientData clientData, Tcl_Interp *interp, int objc,
  • branches/blt4/packages/vizservers/nanovis/VolumeRenderer.cpp

    r1571 r1697  
    236236        // Render cutplanes first with depth test enabled.  They will mark the
    237237        // image with their depth values.  Then we render other volume slices.
    238         // These volume slices will be occluded correctly by the cutplanes and
    239         // vice versa.
    240        
    241         ConvexPolygon static_poly;
     238        // These volume slices will be occluded correctly by the cutplanexPolygon static_poly;
    242239        for(int j = 0; j < volPtr->get_cutplane_count(); j++) {
    243240            if(!volPtr->cutplane_is_enabled(j))
Note: See TracChangeset for help on using the changeset viewer.