Changeset 2715 for trunk


Ignore:
Timestamp:
Dec 5, 2011, 6:45:30 PM (13 years ago)
Author:
gah
Message:
 
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r2709 r2715  
    609609TK_VERSION
    610610TK_XLIBSW
     611TCL_SHLIB_LD
     612TCL_SHLIB_CFLAGS
     613TCL_SHLIB_LDFLAGS
     614TCL_SHLIB_SUFFIX
    611615TK_LIB_SPEC
    612616TK_INC_SPEC
     
    97989802
    97999803
     9804
     9805
     9806
     9807
    98009808ac_configure_args="--disable-threads --enable-shared"
    98019809
  • trunk/configure.in

    r2709 r2715  
    424424AC_SUBST(TK_INC_SPEC)
    425425AC_SUBST(TK_LIB_SPEC)
     426AC_SUBST(TCL_SHLIB_SUFFIX)
     427AC_SUBST(TCL_SHLIB_LDFLAGS)
     428AC_SUBST(TCL_SHLIB_CFLAGS)
     429AC_SUBST(TCL_SHLIB_LD)
    426430AC_SUBST(TK_XLIBSW)
    427431AC_SUBST(TK_VERSION)
  • trunk/gui/apps/rappture-csh.env.in

    r2183 r2715  
    100100endif
    101101 
    102 
     102if ( $?R_LIBS ) then
     103  setenv R_LIBS "${libdir}/R:$R_LIBS"
     104else
     105  setenv R_LIBS "${libdir}/R"
     106endif
  • trunk/gui/scripts/numberresult.tcl

    r1943 r2715  
    957957        # - multiple axes? dim other axes
    958958        # - pop up tooltip about data
    959         #
    960         if {$_hilite(elem) != "" && $_hilite(elem) != $elem} {
    961             $g element deactivate $_hilite(elem)
    962             $g crosshairs configure -hide yes
    963             Rappture::Tooltip::tooltip cancel
    964         }
     959
     960        $g element deactivate $_hilite(elem)
     961        $g crosshairs configure -hide yes
     962        Rappture::Tooltip::tooltip cancel
     963
    965964        $g element activate $elem
    966965        set _hilite(elem) $elem
     
    10421041        # - take down tooltip
    10431042        #
    1044         if {"" != $_hilite(elem)} {
    1045             $g element deactivate $_hilite(elem)
    1046 
    1047             set allx [$g x2axis use]
    1048             if {[llength $allx] > 0} {
    1049                 lappend allx x  ;# fix main x-axis too
    1050                 foreach axis $allx {
    1051                     $g axis configure $axis -color $itk_option(-foreground) \
    1052                         -titlecolor $itk_option(-foreground)
    1053                 }
    1054             }
    1055 
    1056             set ally [$g y2axis use]
    1057             if {[llength $ally] > 0} {
    1058                 lappend ally y  ;# fix main y-axis too
    1059                 foreach axis $ally {
    1060                     $g axis configure $axis -color $itk_option(-foreground) \
    1061                         -titlecolor $itk_option(-foreground)
    1062                 }
    1063             }
    1064         }
     1043        $g element deactivate $_hilite(elem)
     1044
     1045        set allx [$g x2axis use]
     1046        if {[llength $allx] > 0} {
     1047            lappend allx x  ;           # fix main x-axis too
     1048            foreach axis $allx {
     1049                $g axis configure $axis -color $itk_option(-foreground) \
     1050                    -titlecolor $itk_option(-foreground)
     1051            }
     1052        }
     1053
     1054        set ally [$g y2axis use]
     1055        if {[llength $ally] > 0} {
     1056            lappend ally y  ;           # fix main y-axis too
     1057            foreach axis $ally {
     1058                $g axis configure $axis -color $itk_option(-foreground) \
     1059                    -titlecolor $itk_option(-foreground)
     1060            }
     1061        }
    10651062
    10661063        $g crosshairs configure -hide yes
     
    12111208                set dy [expr {abs($y-$_axis(click-y))}]
    12121209                if {$dx < 2 && $dy < 2} {
    1213                     _axis edit $axis
     1210                    Axis edit $axis
    12141211                }
    12151212            } else {
Note: See TracChangeset for help on using the changeset viewer.