Ignore:
Timestamp:
11/09/2007 12:29:19 AM (19 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
tui-new
revision id:
dsowen@fugue88.ws-20071109002919-u3q6f17xwbxvy3b0
Message:

Added numberbox support to forms.
Fixed indentation of defform and added documentation.
Fix: Labels weren't being pushed to the screen.
Fix: (activate label) should return something useful to the form.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/widget/label.lisp

    r40 r45  
    1919  (when raw-text
    2020    (setf text (enquote text)))
    21   (make-instance 'label
    22                  :parent-window parent-window :row row :column column
    23                  :text text))
     21  (let ((inst (make-instance 'label
     22                             :parent-window parent-window
     23                             :row row
     24                             :column column
     25                             :text text)))
     26    (draw inst)
     27    inst))
    2428
    2529(defmethod destroy ((label label)))
    2630
    27 (defmethod activate ((label label) &optional callback))
     31(defmethod activate ((label label) &optional callback)
     32  #\Tab)
Note: See TracChangeset for help on using the changeset viewer.