From e155e9b496291d6cbf3dd6e7d643c05a27166d96 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Fri, 3 Feb 2006 15:38:00 +0000
Subject: [PATCH] workaround a GTK windows bug

---
 src/roster_window.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/roster_window.py b/src/roster_window.py
index 20bca6da47..d3485835bb 100644
--- a/src/roster_window.py
+++ b/src/roster_window.py
@@ -2699,9 +2699,10 @@ _('If "%s" accepts this request you will know his or her status.') % jid)
 			return
 		if grp_source == grp_dest:
 			# Add meta contact
-			if context.action == gtk.gdk.ACTION_COPY:
-				# Keep only MOVE
-				return
+			#FIXME: doesn't work under windows: http://bugzilla.gnome.org/show_bug.cgi?id=329797
+#			if context.action == gtk.gdk.ACTION_COPY:
+#				# Keep only MOVE
+#				return
 			jid_dest = model[iter_dest][C_JID].decode('utf-8')
 			gajim.contacts.add_subcontact(account, jid_dest, jid_source)
 			# remove the source row
-- 
GitLab