From ece9a615eba0ae2e09cd2fd03c14beb3da1708b7 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 17 Apr 2005 20:44:05 +0000 Subject: [PATCH] fix for #183 in current svn [not only in rewrite branch. thanks xaiki for reporting --- plugins/gtkgui/gtkgui.glade | 2 +- plugins/gtkgui/tabbed_chat_window.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/gtkgui/gtkgui.glade b/plugins/gtkgui/gtkgui.glade index cb92d747b..d774b4e35 100644 --- a/plugins/gtkgui/gtkgui.glade +++ b/plugins/gtkgui/gtkgui.glade @@ -9204,7 +9204,7 @@ Custom 0 True Click for contact's extented information - Anonymous <id@server/res> + Anonymous <nick@server/res> True GTK_RELIEF_NONE True diff --git a/plugins/gtkgui/tabbed_chat_window.py b/plugins/gtkgui/tabbed_chat_window.py index 32571930c..7229de911 100644 --- a/plugins/gtkgui/tabbed_chat_window.py +++ b/plugins/gtkgui/tabbed_chat_window.py @@ -65,6 +65,7 @@ class Tabbed_chat_window(Chat): elif image.get_storage_type() == gtk.IMAGE_PIXBUF: status_image.set_from_pixbuf(image.get_pixbuf()) contact_button = self.xmls[jid].get_widget('contact_button') + contact_button.set_use_underline(False) contact_button.set_label(user.name + ' <' + jid + '>') if not user.keyID: self.xmls[jid].get_widget('gpg_togglebutton').set_sensitive(False)