Show only the Jid in the chat_window title to see it better
This commit is contained in:
parent
db3d8e5e56
commit
ca017970cb
|
@ -283,7 +283,7 @@ class message_Window:
|
||||||
self.keyID = self.user.keyID
|
self.keyID = self.user.keyID
|
||||||
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'Chat', APP)
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'Chat', APP)
|
||||||
self.window = self.xml.get_widget('Chat')
|
self.window = self.xml.get_widget('Chat')
|
||||||
self.window.set_title('Chat with ' + user.name + " (" + account + ")")
|
self.window.set_title(user.name + " (" + account + ")")
|
||||||
self.img = self.xml.get_widget('image')
|
self.img = self.xml.get_widget('image')
|
||||||
image = self.plugin.roster.pixbufs[user.show]
|
image = self.plugin.roster.pixbufs[user.show]
|
||||||
if image.get_storage_type() == gtk.IMAGE_ANIMATION:
|
if image.get_storage_type() == gtk.IMAGE_ANIMATION:
|
||||||
|
|
Loading…
Reference in New Issue