Guard window color assignments in element setters

This commit is contained in:
Gabriel Tofvesson 2024-10-11 23:47:43 +02:00
parent b816a81f3b
commit 0a8209d3fe

View File

@ -88,7 +88,11 @@ function Element:setFgColor(color)
if color ~= self.fgColor then
self:setDirty()
self.fgColor = color
self:_getWindow().setTextColor(color)
local win = self:_getWindow()
if win ~= nil then
win.setTextColor(color)
end
end
end
@ -96,7 +100,11 @@ function Element:setBgColor(color)
if color ~= self.bgColor then
self:setDirty()
self.bgColor = color
self:_getWindow().setBackgroundColor(color)
local win = self:_getWindow()
if win ~= nil then
win.setBackgroundColor(color)
end
end
end