Method: TkTextListBox#key_press
- Defined in:
- ext/ae-editor/ae-editor.rb
#key_press(_e) ⇒ Object
571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'ext/ae-editor/ae-editor.rb', line 571 def key_press(_e) case _e.keysym when 'Up' if @selected > 0 select(@selected-1) end when 'Down' if @selected < @count select(@selected+1) end end end |