naughty.background: Do not use the deprecated `shape_border_width`.

The notification code predates the deprecation, but was merged after
it.
This commit is contained in:
Emmanuel Lepage Vallee 2020-02-10 03:14:44 -05:00
parent e0dac2e901
commit 636cc2bf9c
1 changed files with 2 additions and 2 deletions

View File

@ -36,8 +36,8 @@ local function update_background(notif, wdg)
wdg:set_bg(bg) wdg:set_bg(bg)
wdg:set_shape(shape) -- otherwise there's no borders wdg:set_shape(shape) -- otherwise there's no borders
wdg:set_shape_border_width(bw) wdg:set_border_width(bw)
wdg:set_shape_border_color(bc) wdg:set_border_color(bc)
end end
--- The attached notification. --- The attached notification.