move pop widget to match new layout

This commit is contained in:
Jörg Thalheim 2017-01-25 20:12:10 +01:00
parent 9325780f02
commit 6db55c8bd0
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 3 additions and 4 deletions

View File

@ -113,8 +113,7 @@ Supported Platforms: platform independent
**vicious.contrib.ossvol**
vicious.contrib.pop
-
**vicious.contrib.pop**
**vicious.contrib.pulse**

View File

@ -20,7 +20,7 @@ end)
-- POP: provides the count of new messages in a POP3 mailbox
-- vicious.contrib.pop
local pop = {}
local pop_all = {}
-- {{{ POP3 count widget type
@ -52,4 +52,4 @@ local function worker(format, warg)
end
-- }}}
return setmetatable(pop, { __call = function(_, ...) return worker(...) end })
return setmetatable(pop_all, { __call = function(_, ...) return worker(...) end })