mirror of https://github.com/lcpz/lain.git
calendar: fixed typos
This commit is contained in:
parent
c23c2660e9
commit
7d431ef9c4
|
@ -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 })
|
||||
|
|
|
@ -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 })
|
||||
|
|
Loading…
Reference in New Issue