Guard window color assignments in element setters
This commit is contained in:
parent
b816a81f3b
commit
0a8209d3fe
@ -88,7 +88,11 @@ function Element:setFgColor(color)
|
|||||||
if color ~= self.fgColor then
|
if color ~= self.fgColor then
|
||||||
self:setDirty()
|
self:setDirty()
|
||||||
self.fgColor = color
|
self.fgColor = color
|
||||||
self:_getWindow().setTextColor(color)
|
|
||||||
|
local win = self:_getWindow()
|
||||||
|
if win ~= nil then
|
||||||
|
win.setTextColor(color)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -96,7 +100,11 @@ function Element:setBgColor(color)
|
|||||||
if color ~= self.bgColor then
|
if color ~= self.bgColor then
|
||||||
self:setDirty()
|
self:setDirty()
|
||||||
self.bgColor = color
|
self.bgColor = color
|
||||||
self:_getWindow().setBackgroundColor(color)
|
|
||||||
|
local win = self:_getWindow()
|
||||||
|
if win ~= nil then
|
||||||
|
win.setBackgroundColor(color)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user