core/menusystem: remove debug print()

This commit is contained in:
Kazhnuz 2019-02-14 20:49:07 +01:00
parent 6b9bbc4286
commit 5d95b50b97

View file

@ -98,7 +98,6 @@ function GridBox:getWidgetAtPoint(x, y)
for i,v in ipairs(self.slots) do
local xx, yy, ww, hh = self:getSlotHitbox(i)
print(i, xx, yy, ww, hh, x, y)
if (x >= xx) and (y >= yy) and (x < xx + ww) and (y < yy + hh) then
widgetID = v.widgetID
end