Unpack event object when it is not a click event

This commit is contained in:
Gabriel Tofvesson 2024-11-14 03:25:24 +00:00
parent dff74ce8b4
commit da30f475c9

View File

@ -28,7 +28,7 @@ function Event.repositionEvent(evt, dX, dY)
if Event.isClickEvent(evt) then if Event.isClickEvent(evt) then
return evt[1], evt[2], evt[3] + dX, evt[4] + dY return evt[1], evt[2], evt[3] + dX, evt[4] + dY
else else
return evt return table.unpack(evt)
end end
end end