#288 trying metatables
This commit is contained in:
parent
5d7c6078d1
commit
2d35d4e102
1 changed files with 4 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue