X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/43cd98510a33e9f2d50d315a9bfc31ff8d3062c9..bf3a9ba5efb874ad6370a3083afd409361e2912a:/helpers.lua diff --git a/helpers.lua b/helpers.lua index 7c44648..0305722 100644 --- a/helpers.lua +++ b/helpers.lua @@ -177,12 +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() - local t = wibox.widget.base.make_widget(w) - t.widget = w - return t + local w = { widget = wibox.widget.textbox() } + return setmetatable(w, { __index = w.widget }) end -- }}}