awesomerc: fix string escape

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-07-28 15:58:30 +02:00
parent 09fd61fdfa
commit e52cd0017c
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ function mytasklist.label(c, scr)
text = "<bg image=\"@AWESOME_ICON_PATH@/floatingw.png\" align=\"right\"/>"
end
if client.focus_get() == c then
text = text .. " <bg color='"..bg_focus.."'/><span color='"..awful.escape(fg_focus).."'>"..c.name.."</span> "
text = text .. " <bg color='"..bg_focus.."'/><span color='"..fg_focus.."'>"..awful.escape(c.name).."</span> "
else
text = text .. " "..awful.escape(c.name).." "
end