From 2f8413acbc737b232bfb6fa897d39d50c3d7df56 Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage Vallee Date: Wed, 27 Oct 2021 13:38:48 -0700 Subject: [PATCH] layoutlist: Use `layoutlist_spacing` instead of `tasklist_spacing`. Old copy/paste bug. --- lib/awful/widget/layoutlist.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/awful/widget/layoutlist.lua b/lib/awful/widget/layoutlist.lua index 1eaabd1f..b1170823 100644 --- a/lib/awful/widget/layoutlist.lua +++ b/lib/awful/widget/layoutlist.lua @@ -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