Changeset main,63 for main/widget/textbox.lisp
- Timestamp:
- 11/17/2007 12:40:30 AM (19 years ago)
- branch-nick:
- tui
- revision id:
- dsowen@fugue88.ws-20071117004030-ov0o4jfbzl3b9vup
- File:
-
- 1 edited
-
main/widget/textbox.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
main/widget/textbox.lisp
r46 r63 89 89 90 90 91 (defmethod activate ((textbox textbox) &optional (callback 'nothing)) 91 (defmethod activate ((textbox textbox) &key (key-callback 'nothing) 92 &allow-other-keys) 92 93 (with-slots (data window active) textbox 93 94 (setf active t) … … 119 120 (if (or (keywordp key) 120 121 (member key '(#\Return #\Newline #\Tab #\Esc))) 121 (let ((r (funcall callback key)))122 (let ((r (funcall key-callback key))) 122 123 (when r 123 124 (setf (insertion-point textbox) 0)
Note: See TracChangeset
for help on using the changeset viewer.
