X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/dc614905b0e55d80fcf78f28f3454833d513837a..58b2a122dd20cc4d1d15a29a27e618c9c88050cc:/helpers.lua?ds=inline diff --git a/helpers.lua b/helpers.lua index 7c44648..e65e3fb 100644 --- a/helpers.lua +++ b/helpers.lua @@ -180,9 +180,7 @@ 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 + return setmetatable({ widget = w }, { __index = w }) end -- }}}