From 9e0b336c4068aa4b2de965e41355146097b97a11 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 19 Jul 2006 10:58:14 +0000 Subject: [PATCH] middle click on self contact row now works --- src/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index 034b2b599..8257ae349 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -1796,7 +1796,7 @@ _('If "%s" accepts this request you will know his or her status.') % jid) model = self.tree.get_model() iter = model.get_iter(path) type = model[iter][C_TYPE] - if type in ('agent', 'contact'): + if type in ('agent', 'contact', 'self_contact'): self.on_roster_treeview_row_activated(widget, path) elif type == 'account': account = model[iter][C_ACCOUNT].decode('utf-8')