diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-08-06 04:15:23 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-08-06 04:15:23 +0000 |
commit | a21deb2d2fe18c4abcd40e8e4aea0ebfa04a5a64 (patch) | |
tree | 057458f6565e877396480944f7c28014f72ac00d /gtk | |
parent | ab299968d072556544aa53ce6c7ecbb32f3ca4ac (diff) | |
download | gtk+-a21deb2d2fe18c4abcd40e8e4aea0ebfa04a5a64.tar.gz |
(gtk_notebook_drag_motion): Don't accept drops on
arrows. (#348706, Benjamin Otte)
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtknotebook.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 4ce749ffb3..5608498507 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -3139,6 +3139,7 @@ gtk_notebook_drag_motion (GtkWidget *widget, { notebook->click_child = arrow; gtk_notebook_set_scroll_timer (notebook); + gdk_drag_status (context, 0, time); return TRUE; } |