Don't shadow global

This commit is contained in:
Gabriel Tofvesson 2024-10-08 16:54:36 +02:00
parent 0e1c5a4fbb
commit df8f9d4018

View File

@ -186,7 +186,7 @@ function Element:redraw()
end
function Element:handleEvent(evt)
if Event.isClickEvent(evt) and Event.containsClick(self, evt, 0, 0) then
if Event.isClickEvent(evt) and Event.containsClick(self, evt) then
if self.onClick ~= nil then
local x, y, source = Event.getClickParams(evt)
return not not self.onClick(self, x, y, source)
@ -203,10 +203,10 @@ end
function Element:_reload()
if self.parent ~= nil then
local window = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
window.setBackgroundColor(self:getBgColor())
window.setTextColor(self:getFgColor())
self:_setWindow(window)
local win = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
win.setBackgroundColor(self:getBgColor())
win.setTextColor(self:getFgColor())
self:_setWindow(win)
end
end