summaryrefslogtreecommitdiffstats
path: root/src/selection-describer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/selection-describer.cpp')
-rw-r--r--src/selection-describer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection-describer.cpp b/src/selection-describer.cpp
index b3250ffbd..526d5269e 100644
--- a/src/selection-describer.cpp
+++ b/src/selection-describer.cpp
@@ -46,7 +46,7 @@ char* collect_terms (const std::vector<SPItem*> &items)
if (item && item->displayName()) {
Glib::ustring term(item->displayName());
if (term != "" && (check.insert(term).second)) {
- ss << (first ? "" : ", ") << "<b>" << term << "</b>";
+ ss << (first ? "" : ", ") << "<b>" << term.raw() << "</b>";
first = false;
}
}