calendar: fixed typos

This commit is contained in:
copycat-killer 2016-12-04 13:27:52 +01:00
parent c23c2660e9
commit 7d431ef9c4
2 changed files with 4 additions and 4 deletions

View File

@ -116,8 +116,8 @@ function calendar.attach(widget, args)
calendar.offset = 0
calendar.notify_icon = nil
widget:connect_signal("mouse::enter", function () calendar:show(0, 0, calendar.scr_pos) end)
widget:connect_signal("mouse::leave", function () calendar:hide() end)
widget:connect_signal("mouse::enter", function () calendar.show(0, 0, calendar.scr_pos) end)
widget:connect_signal("mouse::leave", function () calendar.hide() end)
widget:buttons(awful.util.table.join(awful.button({ }, 1, function ()
calendar.show(0, -1, calendar.scr_pos) end),
awful.button({ }, 3, function ()
@ -125,7 +125,7 @@ function calendar.attach(widget, args)
awful.button({ }, 4, function ()
calendar.show(0, -1, calendar.scr_pos) end),
awful.button({ }, 5, function ()
calendar:show(0, 1, calendar.scr_pos) end)))
calendar.show(0, 1, calendar.scr_pos) end)))
end
return setmetatable(calendar, { __call = function(_, ...) return create(...) end })

View File

@ -178,4 +178,4 @@ local function worker(args)
return pulsebar
end
return setmetatable(pulsebar, { __call = function(_, ...) return worker(...) end })
eturn setmetatable(pulsebar, { __call = function(_, ...) return worker(...) end })