summaryrefslogtreecommitdiff
path: root/src/ProfileBrowser.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2023-12-17 19:58:57 +0100
committerJörg Frings-Fürst <debian@jff.email>2023-12-17 19:58:57 +0100
commit270fbc11b9744b76bcc52a3cf58fe896d7352724 (patch)
treefb359e210d2d9c30f5ad36a447ea29b62ae9bb56 /src/ProfileBrowser.vala
parent841f952294b349b2b8e2afb5305ce34a3b59bb4b (diff)
parent4cb46f4de4b881e5b1f65af017dca6f3917e55e5 (diff)
Merge branch 'feature/upstream' into develop
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);