diff --git a/ChangeLog b/ChangeLog index 88a11280e9..0eb4d61e93 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-03-08 Marco Pesenti Gritti + + * gtk/gtkentry.c: (gtk_entry_completion_key_press): + + When an action is selected stop the event to be propagated + otherwise the activate signal is emitted too. (Bug #133394) + Mon Mar 8 04:50:12 2004 Jonathan Blandford * gtk/gtkfilechooserdefault.c (create_path_bar): new function to diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 88a11280e9..0eb4d61e93 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,10 @@ +2004-03-08 Marco Pesenti Gritti + + * gtk/gtkentry.c: (gtk_entry_completion_key_press): + + When an action is selected stop the event to be propagated + otherwise the activate signal is emitted too. (Bug #133394) + Mon Mar 8 04:50:12 2004 Jonathan Blandford * gtk/gtkfilechooserdefault.c (create_path_bar): new function to diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 88a11280e9..0eb4d61e93 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,10 @@ +2004-03-08 Marco Pesenti Gritti + + * gtk/gtkentry.c: (gtk_entry_completion_key_press): + + When an action is selected stop the event to be propagated + otherwise the activate signal is emitted too. (Bug #133394) + Mon Mar 8 04:50:12 2004 Jonathan Blandford * gtk/gtkfilechooserdefault.c (create_path_bar): new function to diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 88a11280e9..0eb4d61e93 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,10 @@ +2004-03-08 Marco Pesenti Gritti + + * gtk/gtkentry.c: (gtk_entry_completion_key_press): + + When an action is selected stop the event to be propagated + otherwise the activate signal is emitted too. (Bug #133394) + Mon Mar 8 04:50:12 2004 Jonathan Blandford * gtk/gtkfilechooserdefault.c (create_path_bar): new function to diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 88a11280e9..0eb4d61e93 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,10 @@ +2004-03-08 Marco Pesenti Gritti + + * gtk/gtkentry.c: (gtk_entry_completion_key_press): + + When an action is selected stop the event to be propagated + otherwise the activate signal is emitted too. (Bug #133394) + Mon Mar 8 04:50:12 2004 Jonathan Blandford * gtk/gtkfilechooserdefault.c (create_path_bar): new function to diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 9d55094976..2ef7b50a49 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -4844,6 +4844,8 @@ gtk_entry_completion_key_press (GtkWidget *widget, g_signal_emit_by_name (completion, "action_activated", gtk_tree_path_get_indices (path)[0]); gtk_tree_path_free (path); + + return TRUE; } }