Skip insensitive widgets. (#84061)
Thu Dec 12 17:01:38 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkdnd.c (gtk_drag_find_widget): Skip insensitive widgets. (#84061)
This commit is contained in:
parent
13712bdc0d
commit
fcfb638ab0
@ -1,3 +1,8 @@
|
|||||||
|
Thu Dec 12 17:01:38 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkdnd.c (gtk_drag_find_widget): Skip insensitive
|
||||||
|
widgets. (#84061)
|
||||||
|
|
||||||
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Thu Dec 12 17:01:38 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkdnd.c (gtk_drag_find_widget): Skip insensitive
|
||||||
|
widgets. (#84061)
|
||||||
|
|
||||||
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Thu Dec 12 17:01:38 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkdnd.c (gtk_drag_find_widget): Skip insensitive
|
||||||
|
widgets. (#84061)
|
||||||
|
|
||||||
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Thu Dec 12 17:01:38 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkdnd.c (gtk_drag_find_widget): Skip insensitive
|
||||||
|
widgets. (#84061)
|
||||||
|
|
||||||
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Thu Dec 12 17:01:38 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkdnd.c (gtk_drag_find_widget): Skip insensitive
|
||||||
|
widgets. (#84061)
|
||||||
|
|
||||||
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Thu Dec 12 17:01:38 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkdnd.c (gtk_drag_find_widget): Skip insensitive
|
||||||
|
widgets. (#84061)
|
||||||
|
|
||||||
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Dec 12 15:08:01 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
* acinclude.m4: Remove unneeded bits of AM_GTK_GNU_TEXT
|
||||||
|
@ -1298,7 +1298,7 @@ gtk_drag_find_widget (GtkWidget *widget,
|
|||||||
gint x_offset = 0;
|
gint x_offset = 0;
|
||||||
gint y_offset = 0;
|
gint y_offset = 0;
|
||||||
|
|
||||||
if (data->found || !GTK_WIDGET_MAPPED (widget))
|
if (data->found || !GTK_WIDGET_MAPPED (widget) || !GTK_WIDGET_SENSITIVE (widget))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* Note that in the following code, we only count the
|
/* Note that in the following code, we only count the
|
||||||
|
Loading…
Reference in New Issue
Block a user