Fix helpers call after merge

This commit is contained in:
Grumph 2021-01-24 22:49:14 +01:00
parent 1e44462fe5
commit 77ba6a36e1
1 changed files with 6 additions and 6 deletions

View File

@ -120,29 +120,29 @@ local function create(c, focused_bool, buttons)
{
tab_content,
bg = bg_temp,
shape = helpers.prrect(border_radius, true, true, false, false),
shape = helpers.shape.prrect(border_radius, true, true, false, false),
widget = wibox.container.background
},
top = dpi(8),
widget = wibox.container.margin
}
left_shape = helpers.prrect(border_radius, false, false, true, false)
right_shape = helpers.prrect(border_radius, false, false, false, true)
left_shape = helpers.shape.prrect(border_radius, false, false, true, false)
right_shape = helpers.shape.prrect(border_radius, false, false, false, true)
else
main_content = wibox.widget {
{
tab_content,
bg = bg_temp,
shape = helpers.prrect(border_radius, false, false, true, true),
shape = helpers.shape.prrect(border_radius, false, false, true, true),
widget = wibox.container.background
},
bottom = dpi(8),
widget = wibox.container.margin
}
left_shape = helpers.prrect(border_radius, false, true, false, false)
right_shape = helpers.prrect(border_radius, true, false, false, false)
left_shape = helpers.shape.prrect(border_radius, false, true, false, false)
right_shape = helpers.shape.prrect(border_radius, true, false, false, false)
end
local wid_temp = wibox.widget({