2010-10-06 12:42:56 +02:00
|
|
|
---------------------------------------------------------------------------
|
2016-05-23 05:56:45 +02:00
|
|
|
-- This class has been moved to `wibox.container.margin`
|
|
|
|
--
|
2010-10-06 12:42:56 +02:00
|
|
|
-- @author Uli Schlachter
|
|
|
|
-- @copyright 2010 Uli Schlachter
|
2015-02-25 11:18:53 +01:00
|
|
|
-- @classmod wibox.layout.margin
|
2010-10-06 12:42:56 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2016-05-23 05:56:45 +02:00
|
|
|
local util = require("awful.util")
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2016-05-23 05:56:45 +02:00
|
|
|
return util.deprecate_class(
|
|
|
|
require("wibox.container.margin"),
|
|
|
|
"wibox.layout.margin",
|
|
|
|
"wibox.container.margin"
|
|
|
|
)
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|