summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid McMackins II <contact@mcmackins.org>2016-01-29 19:32:18 -0600
committerDavid McMackins II <contact@mcmackins.org>2016-01-29 19:32:18 -0600
commit22b93fe96ac187003e3026d4510d39491abc0562 (patch)
tree7ff45fc30a49ee5c80fabaee5ca708e617f3d279
parent1ca496045c6e2a2b76150ce295223545f9e32cf0 (diff)
Allow multiple buttons' release triggers to activate
-rw-r--r--main.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index 0480a52..379d602 100644
--- a/main.lua
+++ b/main.lua
@@ -233,7 +233,6 @@ function love.mousereleased(x, y, button)
for _,button in ipairs(buttons) do
if button:isvisible() then
button:onrelease(x, y)
- return
end
end
end