layoutlist: Use `layoutlist_spacing` instead of `tasklist_spacing`.

Old copy/paste bug.
This commit is contained in:
Emmanuel Lepage Vallee 2021-10-27 13:38:48 -07:00
parent c63a80de5c
commit 2f8413acbc
1 changed files with 2 additions and 2 deletions

View File

@ -245,7 +245,7 @@ local layoutlist = {}
--- The space between the layouts.
-- @beautiful beautiful.layoutlist_spacing
-- @tparam[opt=0] number spacing The spacing between tasks.
-- @tparam[opt=0] number spacing The spacing between layouts.
--- The default layoutlist elements shape.
-- @beautiful beautiful.layoutlist_shape
@ -316,7 +316,7 @@ function layoutlist:set_base_layout(layout)
if self._private.layout.set_spacing then
self._private.layout:set_spacing(
self._private.style.spacing or beautiful.tasklist_spacing or 0
self._private.style.spacing or beautiful.layoutlist_spacing or 0
)
end