summaryrefslogtreecommitdiff
path: root/gdk
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-04-21 22:18:05 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-04-21 22:18:05 +0000
commit355a5ee8aba14bade97f91e784170cebc71ac66c (patch)
treeb0194a06c6a8ef348ba5cbbf319ee7cd81f6237f /gdk
parentdd6426b51ee9dd312cc67beaf7286be4da067b36 (diff)
downloadgdk-pixbuf-355a5ee8aba14bade97f91e784170cebc71ac66c.tar.gz
Patch from Alex Larsson fixing problem with restacking during DND.
Mon Apr 21 18:13:46 2003 Owen Taylor <otaylor@redhat.com> * gdk/x11/gdkdnd-x11.c (gdk_window_cache_filter): Patch from Alex Larsson fixing problem with restacking during DND. (#108671)
Diffstat (limited to 'gdk')
-rw-r--r--gdk/x11/gdkdnd-x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/x11/gdkdnd-x11.c b/gdk/x11/gdkdnd-x11.c
index d4109aa62..2e6605510 100644
--- a/gdk/x11/gdkdnd-x11.c
+++ b/gdk/x11/gdkdnd-x11.c
@@ -356,7 +356,7 @@ gdk_window_cache_filter (GdkXEvent *xev,
{
GList *above_node = g_hash_table_lookup (cache->child_hash,
GUINT_TO_POINTER (xce->above));
- if (above_node && node->prev != above_node)
+ if (above_node && node->next != above_node)
{
/* Put the window above (before in the list) above_node
*/