Ignore:
Timestamp:
Mar 5, 2013 3:22:29 PM (11 years ago)
Author:
gah
Message:

add KP_Enter to Return bindings. Implement OK handler in visviewer base class. Fix setting # of isolines while running a sequence of heightmaps/contours

File:
1 edited

Legend:

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

    r3330 r3454  
    12711271            $inner.label delete 0 end
    12721272            $inner.label insert end $label
    1273             bind $inner.label <KeyPress-Return> \
     1273            bind $inner.label <Return> \
     1274                [itcl::code $this _axis changed $axis label]
     1275            bind $inner.label <KP_Enter> \
    12741276                [itcl::code $this _axis changed $axis label]
    12751277            bind $inner.label <FocusOut> \
     
    12801282            $inner.min delete 0 end
    12811283            $inner.min insert end $min
    1282             bind $inner.min <KeyPress-Return> \
     1284            bind $inner.min <Return> \
     1285                [itcl::code $this _axis changed $axis min]
     1286            bind $inner.min <KP_Enter> \
    12831287                [itcl::code $this _axis changed $axis min]
    12841288            bind $inner.min <FocusOut> \
     
    12871291            $inner.max delete 0 end
    12881292            $inner.max insert end $max
    1289             bind $inner.max <KeyPress-Return> \
     1293            bind $inner.max <Return> \
     1294                [itcl::code $this _axis changed $axis max]
     1295            bind $inner.max <KP_Enter> \
    12901296                [itcl::code $this _axis changed $axis max]
    12911297            bind $inner.max <FocusOut> \
Note: See TracChangeset for help on using the changeset viewer.