diff options
author | Alessandro Ghedini <al3xbio@gmail.com> | 2012-01-27 21:34:48 +0100 |
---|---|---|
committer | Alessandro Ghedini <al3xbio@gmail.com> | 2012-01-27 21:34:48 +0100 |
commit | a824c3e5bdab686901b02667609282e7d596a6af (patch) | |
tree | de05c11d82468977683d65b39952f5e3ab3e2841 /src/gui/themeList.vala | |
parent | 21c8b0c749be00fff27e41e4c2d677dd7d320fa0 (diff) |
Imported Upstream version 0.4.2upstream/0.4.2
Diffstat (limited to 'src/gui/themeList.vala')
-rw-r--r-- | src/gui/themeList.vala | 6 |
1 files changed, 4 insertions, 2 deletions
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, "<b>"+theme.name+"</b><small> - "+theme.description+"\n" - +"<i>"+_("By")+" "+theme.author+"</i></small>"); + data.set(current, DataPos.NAME, "<b>"+GLib.Markup.escape_text(theme.name)+"</b><small> - " + +GLib.Markup.escape_text(theme.description)+"\n" + +"<i>"+GLib.Markup.escape_text(_("By")+" "+theme.author) + +"</i></small>"); if(theme == Config.global.theme) get_selection().select_iter(current); } |