Fix a nil dereference
This commit is contained in:
parent
e33300f4ee
commit
2b48b6c353
|
@ -100,8 +100,9 @@ end
|
||||||
local function set_text(self,text)
|
local function set_text(self,text)
|
||||||
self.init = nil
|
self.init = nil
|
||||||
self._text = text
|
self._text = text
|
||||||
|
if textw then
|
||||||
textw:set_markup("<b>".. data._text .."</b>")
|
textw:set_markup("<b>".. data._text .."</b>")
|
||||||
|
end
|
||||||
init(data,data._w,dara._args)
|
init(data,data._w,dara._args)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue