Skip to content
Snippets Groups Projects
Commit 3cd3817d authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

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

parent 0abf7d13
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment