move mboxc widget to match new layout

This commit is contained in:
mutlusun 2017-01-25 17:53:03 +01:00 committed by Jörg Thalheim
parent 2605a1b744
commit 9695e0fea0
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ local string = { find = string.find }
-- Mboxc: provides the count of total, old and new messages in mbox files -- Mboxc: provides the count of total, old and new messages in mbox files
-- vicious.widgets.mboxc -- vicious.widgets.mboxc
local mboxc = {} local mboxc_all = {}
-- {{{ Mbox count widget type -- {{{ Mbox count widget type
@ -55,4 +55,4 @@ local function worker(format, warg)
end end
-- }}} -- }}}
return setmetatable(mboxc, { __call = function(_, ...) return worker(...) end }) return setmetatable(mboxc_all, { __call = function(_, ...) return worker(...) end })