Merge pull request #38 from almonteb/fix/scroll

Adding scrolling support to the calendar
This commit is contained in:
Luke Bonham 2014-04-09 21:04:04 +02:00
commit 9d1fcc7435
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 })