# HG changeset patch # User Nathan Walp # Date 1049167670 0 # Node ID 4228bddbf2cdab513cf10d1b7452dd544d0ed22e # Parent cfeab08d4be90932bc50c88c393653ef69a9a213 [gaim-migrate @ 5271] fix drag-a-group-on-top-of-itself hang committer: Tailor Script diff -r cfeab08d4be9 -r 4228bddbf2cd src/list.c --- a/src/list.c Tue Apr 01 03:19:51 2003 +0000 +++ b/src/list.c Tue Apr 01 03:27:50 2003 +0000 @@ -284,6 +284,9 @@ return; } + /* if we're moving to overtop of ourselves, do nothing */ + if((GaimBlistNode*)group == node) + return; if (!node) node = gaim_blist_get_last_sibling(gaimbuddylist->root);