diff options
author | Colin Okay <colin@cicadas.surf> | 2022-07-22 11:58:16 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-07-22 11:58:16 -0500 |
commit | 00841605110612f6e7f3bbfc054ceff980bf25be (patch) | |
tree | 1f16b86d5c555eea22e60cb2d36f88682bd9023b /examples/03-font-render.lisp | |
parent | 6d9b8b48423dba99ecdba004f260c30e6717b6a6 (diff) |
[version] [refactor] [redesign] removed containers
Diffstat (limited to 'examples/03-font-render.lisp')
-rw-r--r-- | examples/03-font-render.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/03-font-render.lisp b/examples/03-font-render.lisp index c8188df..de3c487 100644 --- a/examples/03-font-render.lisp +++ b/examples/03-font-render.lisp @@ -68,12 +68,12 @@ (ww::add-handler hello #'change-text-color) (ww::add-handler hello #'twirl-on-click) (ww::refocus-on hello) - (ww::add-unit app hello) + (ww::add-unit hello) (ww::scale-by instructions 2.0) (setf (ww::x instructions) (* 0.5 (- 800 (ww::width instructions)))) - (ww::add-unit app instructions))) + (ww::add-unit instructions))) (defun start () |