mirror of https://github.com/lcpz/lain.git
#288 trying metatables
This commit is contained in:
parent
5d7c6078d1
commit
2d35d4e102
|
@ -180,9 +180,10 @@ end
|
|||
-- create a textbox with no spacing issues
|
||||
function helpers.make_widget_textbox()
|
||||
local w = wibox.widget.textbox()
|
||||
local t = wibox.widget.base.make_widget(w)
|
||||
t.widget = w
|
||||
return t
|
||||
--local t = wibox.widget.base.make_widget(w)
|
||||
--t.widget = w
|
||||
--return t
|
||||
return setmetatable({ widget = w }, { __index = w })
|
||||
end
|
||||
|
||||
-- }}}
|
||||
|
|
Loading…
Reference in New Issue