no need to have the jid to be able to send a pm

This commit is contained in:
Yann Leboulanger 2005-06-08 08:08:32 +00:00
parent 0abf7d1317
commit 3cd3817d21
1 changed files with 5 additions and 5 deletions

View File

@ -556,12 +556,12 @@ class Groupchat_window(chat.Chat):
menu.append(item)
item.connect('activate', self.on_info, jid)
item = gtk.MenuItem()
menu.append(item)
item = gtk.MenuItem()
menu.append(item)
item = gtk.MenuItem(_('Send _Priate Message'))
menu.append(item)
item.connect('activate', self.on_send_pm, model, iter)
item = gtk.MenuItem(_('Send _Priate Message'))
menu.append(item)
item.connect('activate', self.on_send_pm, model, iter)
menu.popup(None, None, None, event.button, event.time)
menu.show_all()