2015-11-22 18:19:53 +01:00
|
|
|
---------------------------------------------------------------------------
|
2016-05-23 05:56:45 +02:00
|
|
|
-- This class has been moved to `wibox.container.scroll`
|
|
|
|
--
|
2015-11-22 18:19:53 +01:00
|
|
|
-- @author Uli Schlachter (based on ideas from Saleur Geoffrey)
|
|
|
|
-- @copyright 2015 Uli Schlachter
|
|
|
|
-- @classmod wibox.layout.scroll
|
|
|
|
---------------------------------------------------------------------------
|
2017-03-15 06:08:40 +01:00
|
|
|
local gdebug = require("gears.debug")
|
2015-11-22 18:19:53 +01:00
|
|
|
|
2017-03-15 06:08:40 +01:00
|
|
|
return gdebug.deprecate_class(
|
2016-05-23 05:56:45 +02:00
|
|
|
require("wibox.container.scroll"),
|
|
|
|
"wibox.layout.scroll",
|
|
|
|
"wibox.container.scroll"
|
|
|
|
)
|
2015-11-22 18:19:53 +01:00
|
|
|
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|