fix for #183 in current svn [not only in rewrite branch. thanks xaiki for reporting
This commit is contained in:
parent
83277fca72
commit
ece9a615eb
|
@ -9204,7 +9204,7 @@ Custom</property>
|
||||||
<property name="height_request">0</property>
|
<property name="height_request">0</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="tooltip" translatable="yes">Click for contact's extented information</property>
|
<property name="tooltip" translatable="yes">Click for contact's extented information</property>
|
||||||
<property name="label" translatable="yes">Anonymous <id@server/res></property>
|
<property name="label" translatable="yes">Anonymous <nick@server/res></property>
|
||||||
<property name="use_underline">True</property>
|
<property name="use_underline">True</property>
|
||||||
<property name="relief">GTK_RELIEF_NONE</property>
|
<property name="relief">GTK_RELIEF_NONE</property>
|
||||||
<property name="focus_on_click">True</property>
|
<property name="focus_on_click">True</property>
|
||||||
|
|
|
@ -65,6 +65,7 @@ class Tabbed_chat_window(Chat):
|
||||||
elif image.get_storage_type() == gtk.IMAGE_PIXBUF:
|
elif image.get_storage_type() == gtk.IMAGE_PIXBUF:
|
||||||
status_image.set_from_pixbuf(image.get_pixbuf())
|
status_image.set_from_pixbuf(image.get_pixbuf())
|
||||||
contact_button = self.xmls[jid].get_widget('contact_button')
|
contact_button = self.xmls[jid].get_widget('contact_button')
|
||||||
|
contact_button.set_use_underline(False)
|
||||||
contact_button.set_label(user.name + ' <' + jid + '>')
|
contact_button.set_label(user.name + ' <' + jid + '>')
|
||||||
if not user.keyID:
|
if not user.keyID:
|
||||||
self.xmls[jid].get_widget('gpg_togglebutton').set_sensitive(False)
|
self.xmls[jid].get_widget('gpg_togglebutton').set_sensitive(False)
|
||||||
|
|
Loading…
Reference in New Issue