From 77804ee7aa7a9948a58521fe9816d6ac1eff61f8 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 4 Jan 2008 19:29:27 +0000 Subject: [PATCH] typo in [9231] fixes #3656 --- 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 c7c736f33..6f574b34a 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -3390,7 +3390,7 @@ class RosterWindow: not event.state & gtk.gdk.CONTROL_MASK: # Don't handle dubble click if we press icon of a metacontact iter = model.get_iter(path) - if x > xmin and x < x_min + 27 and type_ == 'contact' and \ + if x > x_min and x < x_min + 27 and type_ == 'contact' and \ model.iter_has_child(iter): account = model[path][C_ACCOUNT].decode('utf-8') jid = model[path][C_JID].decode('utf-8')