From 0ffc6f1169198c4229e5353c9f503f698205f6e5 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 6 Jan 2006 08:55:51 +0000 Subject: [PATCH] use escape for pango markup --- src/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat.py b/src/chat.py index b545957e3..fa802e82e 100644 --- a/src/chat.py +++ b/src/chat.py @@ -288,7 +288,7 @@ class Chat: close_button.hide() nickname.set_max_width_chars(10) - lbl = self.names[jid] + lbl = gtkgui_helpers.escape_for_pango_markup(self.names[jid]) if num_unread: # if unread, text in the label becomes bold lbl = '' + unread + lbl + '' nickname.set_markup(lbl)