~lthms/fairy.lisp

07a979c5e00102f0a79ae7e49b17c482763b5fe9 — Thomas Letan 6 years ago f1c614f
fix: The first to be add is the first to be drawn
1 files changed, 1 insertions(+), 1 deletions(-)

M fairy.lisp
M fairy.lisp => fairy.lisp +1 -1
@@ 105,7 105,7 @@
        (draw (cdr e)))))

(defmethod add-child ((el layer) child &key with-key)
  (setf (children el) (cons (cons with-key child) (children el))))
  (setf (children el) (append (children el) (list (cons with-key child)))))

(defmethod get-child ((el layer) key &key test)
  (if test