Changeset 6294


Ignore:
Timestamp:
Apr 27, 2016 10:18:08 AM (8 years ago)
Author:
gah
Message:

fixes for nanovisviewer

Location:
branches/1.6
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/1.6/gui/scripts/analyzer.tcl

    r6271 r6294  
    15941594        -state $state
    15951595    $m add command -label "Tickets" -state $state \
    1596         -command [list $webcmd "$url/feedback/report_problems?group=$group$referrer"]
     1596        -command [list $webcmd "$url/feedback/report_problems?group=$group$referer"]
    15971597    $m add command -label "Wish List" -state disabled
    15981598    $m add separator
  • branches/1.6/gui/scripts/gauge.tcl

    r6291 r6294  
    636636    $itk_component(spindn) configure -state $itk_option(-state)
    637637    $itk_component(presets) configure -state $itk_option(-state)
    638     if { [info exists component(uq)] } {
     638    if { [info exists itk_component(uq)] } {
    639639        $itk_component(uq) configure -state $itk_option(-state)
    640640    }
    641     _redraw  ;# fix gauge
     641    _redraw  ;                          # Fix gauge
    642642}
    643643
  • branches/1.6/gui/scripts/nanovisviewer.tcl

    r6265 r6294  
    502502        if { $pos >= 0 } {
    503503            set _dlist [lreplace $_dlist $pos $pos]
    504             array unset _limits $dataobj*
     504            # Don't remove the limits settings because we're not really
     505            # deleting the volume, just hiding it.
     506            #array unset _limits $dataobj*
    505507            array unset _obj2ovride $dataobj-*
    506508            set changed 1
     
    795797
    796798    if { [info exists _isomarkers($tf)] } {
     799update idletasks
     800update
    797801        foreach m $_isomarkers($tf) {
    798802            $m visible yes
     
    917921    # settings since the user may have created/deleted/moved markers.
    918922
     923update idletasks
     924update
    919925    foreach tf [array names _isomarkers] {
    920926        foreach m $_isomarkers($tf) {
  • branches/1.6/lang/tcl/scripts/library.tcl

    r6282 r6294  
    10691069# ----------------------------------------------------------------------
    10701070itcl::body Rappture::LibraryObj::uq_get_vars {{tfile ""}} {
    1071     set varout \[
    1072     set varlist []
     1071    set varout "\["
     1072    set varlist {}
    10731073
    10741074    if {$tfile == ""} {
Note: See TracChangeset for help on using the changeset viewer.