diff --git a/ChangeLog b/ChangeLog index 899dc8a64a..7a4fa0556f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-03-09 Federico Mena Quintero + + * gtk/gtkfilechooserdefault.c (shortcuts_drag_data_received_cb): + Stop the emission so that GtkTreeView's handler won't try to poke + the filter model. Fixes #136127. + Tue Mar 9 13:49:14 2004 Owen Taylor * gtk/gtkstyle.c (gtk_paint_polygon): Fix diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 899dc8a64a..7a4fa0556f 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2004-03-09 Federico Mena Quintero + + * gtk/gtkfilechooserdefault.c (shortcuts_drag_data_received_cb): + Stop the emission so that GtkTreeView's handler won't try to poke + the filter model. Fixes #136127. + Tue Mar 9 13:49:14 2004 Owen Taylor * gtk/gtkstyle.c (gtk_paint_polygon): Fix diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 899dc8a64a..7a4fa0556f 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +2004-03-09 Federico Mena Quintero + + * gtk/gtkfilechooserdefault.c (shortcuts_drag_data_received_cb): + Stop the emission so that GtkTreeView's handler won't try to poke + the filter model. Fixes #136127. + Tue Mar 9 13:49:14 2004 Owen Taylor * gtk/gtkstyle.c (gtk_paint_polygon): Fix diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 899dc8a64a..7a4fa0556f 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2004-03-09 Federico Mena Quintero + + * gtk/gtkfilechooserdefault.c (shortcuts_drag_data_received_cb): + Stop the emission so that GtkTreeView's handler won't try to poke + the filter model. Fixes #136127. + Tue Mar 9 13:49:14 2004 Owen Taylor * gtk/gtkstyle.c (gtk_paint_polygon): Fix diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 899dc8a64a..7a4fa0556f 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2004-03-09 Federico Mena Quintero + + * gtk/gtkfilechooserdefault.c (shortcuts_drag_data_received_cb): + Stop the emission so that GtkTreeView's handler won't try to poke + the filter model. Fixes #136127. + Tue Mar 9 13:49:14 2004 Owen Taylor * gtk/gtkstyle.c (gtk_paint_polygon): Fix diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c index 1a93eec315..2affafef65 100644 --- a/gtk/gtkfilechooserdefault.c +++ b/gtk/gtkfilechooserdefault.c @@ -1724,6 +1724,8 @@ shortcuts_drag_data_received_cb (GtkWidget *widget, } g_slist_free (uris); + + g_signal_stop_emission_by_name (widget, "drag-data-received"); } /* Callback used when the selection in the shortcuts tree changes */