layoutlist: Allow empty constructor.

This commit is contained in:
Emmanuel Lepage Vallee 2021-10-24 21:13:54 -07:00
parent 11e4fe88bb
commit c63a80de5c
1 changed files with 2 additions and 0 deletions

View File

@ -400,6 +400,8 @@ local function update_common()
end
local function new(_, args)
args = args or {}
local ret = wibox.widget.base.make_widget(nil, nil, {
enable_properties = true,
})