From df8f9d4018152b0ea904d047fbc6ddea36678e86 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 8 Oct 2024 16:54:36 +0200 Subject: [PATCH] Don't shadow global --- gfx/element.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gfx/element.lua b/gfx/element.lua index 5be36bb..1d3e143 100644 --- a/gfx/element.lua +++ b/gfx/element.lua @@ -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