Adding scrolling support to the calendar

This commit is contained in:
Brendan Almonte 2014-04-08 21:36:35 -04:00 committed by copycat-killer
parent 315106253f
commit 604b85a6e4
1 changed files with 5 additions and 1 deletions

View File

@ -120,7 +120,11 @@ function calendar:attach(widget, args)
widget:buttons(awful.util.table.join( awful.button({ }, 1, function ()
calendar:show(0, -1) end),
awful.button({ }, 3, function ()
calendar:show(0, 1) end) ))
calendar:show(0, 1) end),
awful.button({ }, 4, function ()
calendar:show(0, -1) end),
awful.button({ }, 5, function ()
calendar:show(0, 1) end)))
end
return setmetatable(calendar, { __call = function(_, ...) return create(...) end })