From a824c3e5bdab686901b02667609282e7d596a6af Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Fri, 27 Jan 2012 21:34:48 +0100 Subject: Imported Upstream version 0.4.2 --- src/gui/themeList.vala | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/gui/themeList.vala') diff --git a/src/gui/themeList.vala b/src/gui/themeList.vala index 62e0721..7aaecc6 100644 --- a/src/gui/themeList.vala +++ b/src/gui/themeList.vala @@ -82,8 +82,10 @@ class ThemeList : Gtk.TreeView { Gtk.TreeIter current; data.append(out current); data.set(current, DataPos.ICON, theme.preview_icon.to_pixbuf()); - data.set(current, DataPos.NAME, ""+theme.name+" - "+theme.description+"\n" - +""+_("By")+" "+theme.author+""); + data.set(current, DataPos.NAME, ""+GLib.Markup.escape_text(theme.name)+" - " + +GLib.Markup.escape_text(theme.description)+"\n" + +""+GLib.Markup.escape_text(_("By")+" "+theme.author) + +""); if(theme == Config.global.theme) get_selection().select_iter(current); } -- cgit v1.2.3