From 9eca9e73abe6dd0f53cf170a5c50b620d7313907 Mon Sep 17 00:00:00 2001 From: Kenny Shields Date: Mon, 26 May 2014 19:14:22 -0400 Subject: [PATCH] Fix #123 --- objects/list.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/objects/list.lua b/objects/list.lua index 01725ea..93baef9 100644 --- a/objects/list.lua +++ b/objects/list.lua @@ -88,10 +88,7 @@ function newobject:update(dt) local offsety = self.offsety for k, v in ipairs(children) do - local col = loveframes.util.BoundingBox(x, v.x, y, v.y, width, v.width, height, v.height) - if col then - v:update(dt) - end + v:update(dt) v:SetClickBounds(x, y, width, height) v.x = (v.parent.x + v.staticx) - offsetx v.y = (v.parent.y + v.staticy) - offsety