move mdir widget to match new layout

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

View File

@ -13,7 +13,7 @@ local helpers = require("vicious.helpers")
-- Mdir: provides the number of new and unread messages in Maildir structures/dirs
-- vicious.widgets.mdir
local mdir = {}
local mdir_all = {}
-- {{{ Maildir widget type
@ -40,4 +40,4 @@ local function worker(format, warg)
end
-- }}}
return setmetatable(mdir, { __call = function(_, ...) return worker(...) end })
return setmetatable(mdir_all, { __call = function(_, ...) return worker(...) end })