summaryrefslogtreecommitdiff
path: root/src/ProfileBrowser.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/ProfileBrowser.vala')
-rw-r--r--src/ProfileBrowser.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ProfileBrowser.vala b/src/ProfileBrowser.vala
index 1591fce..7331918 100644
--- a/src/ProfileBrowser.vala
+++ b/src/ProfileBrowser.vala
@@ -133,7 +133,7 @@ namespace Shotwell {
pack_end(revealer, true);
var label = new Gtk.Label(null);
- label.set_markup("<span weight=\"bold\">%s</span>".printf(profile.name));
+ label.set_markup("<span weight=\"bold\">%s</span>".printf(Markup.escape_text(profile.name)));
label.halign = Gtk.Align.START;
content.pack_start(label, true, true, 6);