From 76fa9bbd852fdb2d47c8cf3d539da805bd2f9b53 Mon Sep 17 00:00:00 2001
From: Colin Okay <colin@cicadas.surf>
Date: Wed, 6 Jul 2022 09:51:13 -0500
Subject: [bugfix] get-rect (container); [modify] contains-point-p

modification to contains-point-p in order to handle events on objects
in containers correctly; i.e. event doesn't fire if object is not
being drawn.
---
 src/core/container.lisp | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

(limited to 'src/core')

diff --git a/src/core/container.lisp b/src/core/container.lisp
index 1410310..e5fe251 100644
--- a/src/core/container.lisp
+++ b/src/core/container.lisp
@@ -21,7 +21,7 @@
   (with-slots (cached-rect left right top bottom) container
     (or cached-rect
         (setf cached-rect 
-              (list* (vec:vec left bottom 0 1.0)
+              (list (vec:vec left bottom 0 1.0)
                      (vec:vec left top 0 1.0)
                      (vec:vec right top 0 1.0)
                      (vec:vec right bottom 0 1.0)
@@ -71,12 +71,11 @@ necessary."
           (gl:get* :scissor-box))
         (scale
           (application-scale
-           (app-of-unit container))
-          )) 
+           (app-of-unit container)))) 
     (with-slots (left right top bottom) container 
       (gl:scissor (* left scale) (* scale bottom) (* scale (- right left)) (* scale (- top bottom)))
       (unwind-protect  
            (dolist (u (container-units container))
-             (when (visible-in-container-p u)
+             (if (visible-in-container-p u)
                (render u)))
         (gl:scissor (aref current 0) (aref current 1) (aref current 2) (aref current 3))))))
-- 
cgit v1.2.3