Don't shadow global
This commit is contained in:
parent
0e1c5a4fbb
commit
df8f9d4018
@ -186,7 +186,7 @@ function Element:redraw()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Element:handleEvent(evt)
|
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
|
if self.onClick ~= nil then
|
||||||
local x, y, source = Event.getClickParams(evt)
|
local x, y, source = Event.getClickParams(evt)
|
||||||
return not not self.onClick(self, x, y, source)
|
return not not self.onClick(self, x, y, source)
|
||||||
@ -203,10 +203,10 @@ end
|
|||||||
|
|
||||||
function Element:_reload()
|
function Element:_reload()
|
||||||
if self.parent ~= nil then
|
if self.parent ~= nil then
|
||||||
local window = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
|
local win = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
|
||||||
window.setBackgroundColor(self:getBgColor())
|
win.setBackgroundColor(self:getBgColor())
|
||||||
window.setTextColor(self:getFgColor())
|
win.setTextColor(self:getFgColor())
|
||||||
self:_setWindow(window)
|
self:_setWindow(win)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user