diff --git a/lib/awful/widget/taglist.lua.in b/lib/awful/widget/taglist.lua.in
index 7c83017d8..72d2af08a 100644
--- a/lib/awful/widget/taglist.lua.in
+++ b/lib/awful/widget/taglist.lua.in
@@ -78,10 +78,10 @@ function taglist_label(t, args)
end
if not tag.getproperty(t, "icon_only") then
if fg_color then
- text = text .. ""
- text = " " .. text.. (util.escape(t.name) or "") .." "
+ text = text .. "" ..
+ (util.escape(t.name) or "") .. ""
else
- text = text .. " " .. (util.escape(t.name) or "") .. " "
+ text = text .. (util.escape(t.name) or "")
end
end
text = text .. ""
@@ -152,7 +152,7 @@ function new(screen, filter, buttons, style, template)
},
{
item = "title",
- --margin = { left = 2, right = 2 },
+ margin = { left = 4, right = 4 },
bg_resize = true,
},
layout = layout.horizontal.leftright