mirror of https://github.com/lcpz/lain.git
Merge pull request #38 from almonteb/fix/scroll
Adding scrolling support to the calendar
This commit is contained in:
commit
9d1fcc7435
|
@ -120,6 +120,10 @@ function calendar:attach(widget, args)
|
||||||
widget:buttons(awful.util.table.join( awful.button({ }, 1, function ()
|
widget:buttons(awful.util.table.join( awful.button({ }, 1, function ()
|
||||||
calendar:show(0, -1) end),
|
calendar:show(0, -1) end),
|
||||||
awful.button({ }, 3, function ()
|
awful.button({ }, 3, function ()
|
||||||
|
calendar:show(0, 1) end),
|
||||||
|
awful.button({ }, 4, function ()
|
||||||
|
calendar:show(0, -1) end),
|
||||||
|
awful.button({ }, 5, function ()
|
||||||
calendar:show(0, 1) end)))
|
calendar:show(0, 1) end)))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue