move date widget to match new layout

This commit is contained in:
mutlusun 2017-01-25 17:50:29 +01:00 committed by Jörg Thalheim
parent 968fee1a54
commit 62dbf146a0
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ local os = {
-- Date: provides access to os.date with optional time formatting
-- vicious.widgets.date
local date = {}
local date_all = {}
-- {{{ Date widget type
@ -24,4 +24,4 @@ local function worker(format, warg)
end
-- }}}
return setmetatable(date, { __call = function(_, ...) return worker(...) end })
return setmetatable(date_all, { __call = function(_, ...) return worker(...) end })