No need to continue looping after finding active.

SVN revision: 34814
This commit is contained in:
Sebastian Dransfeld 2008-06-13 10:57:06 +00:00
parent 2942b79ffd
commit ff992cfb50
1 changed files with 4 additions and 1 deletions

View File

@ -1173,7 +1173,10 @@ _e_dnd_cb_event_dnd_position(void *data, int type, void *event)
h = l->data;
if (h->active)
active = 1;
{
active = 1;
break;
}
}
if (!active)
{