From 3f9ccd5176a97791f54d267bac874c5b5458ee89 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 17 Sep 2012 14:35:04 +0000 Subject: [PATCH] prevent dnd from dropping on an infinite number of targets SVN revision: 76764 --- src/bin/e_dnd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_dnd.c b/src/bin/e_dnd.c index c696ed187..8d24357f0 100644 --- a/src/bin/e_dnd.c +++ b/src/bin/e_dnd.c @@ -998,6 +998,7 @@ _e_drag_end(Ecore_X_Window root, int x, int y) dropped = 1; } h->entered = 0; + if (dropped) break; } if (_drag_current->cb.finished) _drag_current->cb.finished(_drag_current, dropped);