X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/58b2a122dd20cc4d1d15a29a27e618c9c88050cc..bf3a9ba5efb874ad6370a3083afd409361e2912a:/helpers.lua diff --git a/helpers.lua b/helpers.lua index e65e3fb..0305722 100644 --- a/helpers.lua +++ b/helpers.lua @@ -177,10 +177,10 @@ function helpers.spairs(t) end end --- create a textbox with no spacing issues +-- create a lain textbox function helpers.make_widget_textbox() - local w = wibox.widget.textbox() - return setmetatable({ widget = w }, { __index = w }) + local w = { widget = wibox.widget.textbox() } + return setmetatable(w, { __index = w.widget }) end -- }}}