move mbox widget to match new layout

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

View File

@ -14,7 +14,7 @@ local helpers = require("vicious.helpers")
-- Mbox: provides the subject of last e-mail in a mbox file
-- vicious.widgets.mbox
local mbox = {}
local mbox_all = {}
-- Initialize variables
@ -50,4 +50,4 @@ local function worker(format, warg)
end
-- }}}
return setmetatable(mbox, { __call = function(_, ...) return worker(...) end })
return setmetatable(mbox_all, { __call = function(_, ...) return worker(...) end })