summaryrefslogtreecommitdiff
path: root/awesome/lib/wibox/layout/scroll.lua
diff options
context:
space:
mode:
Diffstat (limited to 'awesome/lib/wibox/layout/scroll.lua')
-rw-r--r--awesome/lib/wibox/layout/scroll.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/awesome/lib/wibox/layout/scroll.lua b/awesome/lib/wibox/layout/scroll.lua
new file mode 100644
index 0000000..e0be79f
--- /dev/null
+++ b/awesome/lib/wibox/layout/scroll.lua
@@ -0,0 +1,16 @@
+---------------------------------------------------------------------------
+-- This class has been moved to `wibox.container.scroll`
+--
+-- @author Uli Schlachter (based on ideas from Saleur Geoffrey)
+-- @copyright 2015 Uli Schlachter
+-- @classmod wibox.layout.scroll
+---------------------------------------------------------------------------
+local util = require("awful.util")
+
+return util.deprecate_class(
+ require("wibox.container.scroll"),
+ "wibox.layout.scroll",
+ "wibox.container.scroll"
+)
+
+-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80