taglist_shape_border_width_focus and taglist_shape_border_color_focus are not put into the correct variables

This commit is contained in:
Kevin Zander 2017-01-16 11:18:47 -06:00
parent 6b8c3642bd
commit 44e0ea5681
1 changed files with 2 additions and 2 deletions

View File

@ -281,11 +281,11 @@ function taglist.taglist_label(t, args)
end end
if args.shape_border_width_focus or theme.taglist_shape_border_width_focus then if args.shape_border_width_focus or theme.taglist_shape_border_width_focus then
shape = args.shape_border_width_focus or theme.taglist_shape_border_width_focus shape_border_width = args.shape_border_width_focus or theme.taglist_shape_border_width_focus
end end
if args.shape_border_color_focus or theme.taglist_shape_border_color_focus then if args.shape_border_color_focus or theme.taglist_shape_border_color_focus then
shape = args.shape_border_color_focus or theme.taglist_shape_border_color_focus shape_border_color = args.shape_border_color_focus or theme.taglist_shape_border_color_focus
end end
elseif tag.getproperty(t, "urgent") then elseif tag.getproperty(t, "urgent") then