From 844f0dc3561a89adc27e6976662f56496fec5f45 Mon Sep 17 00:00:00 2001 From: Insality Date: Sun, 14 Jun 2020 20:09:23 +0300 Subject: [PATCH] #71 fix blocker input events --- druid/base/blocker.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/druid/base/blocker.lua b/druid/base/blocker.lua index e5c3931..79238d2 100644 --- a/druid/base/blocker.lua +++ b/druid/base/blocker.lua @@ -29,7 +29,9 @@ end function M.on_input(self, action_id, action) - if action_id ~= const.ACTION_TOUCH and action_id ~= const.ACTION_MULTITOUCH then + if action_id ~= const.ACTION_TOUCH and + action_id ~= const.ACTION_MULTITOUCH and + action_id ~= nil then return false end