From 90f398a4132bdc09718508be8e0f58d7696ac82e Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 29 Mar 2001 12:25:15 +0000 Subject: [PATCH] =?UTF-8?q?Don't=20return=20TRUE=20from=20the=20event=20ha?= =?UTF-8?q?ndler,=A0that=20blocks=20all=20event=20signals=20on?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2001-03-29 Alexander Larsson * gtk/gtktooltips.c (gtk_tooltips_event_handler): Don't return TRUE from the event handler, that blocks all event signals on the tooltip widget. Now you can press buttons in toolbars again. --- ChangeLog | 7 +++++++ ChangeLog.pre-2-0 | 7 +++++++ ChangeLog.pre-2-10 | 7 +++++++ ChangeLog.pre-2-2 | 7 +++++++ ChangeLog.pre-2-4 | 7 +++++++ ChangeLog.pre-2-6 | 7 +++++++ ChangeLog.pre-2-8 | 7 +++++++ gtk/gtktooltips.c | 2 +- 8 files changed, 50 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1d47c86b5a..79c738ddd5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2001-03-29 Alexander Larsson + + * gtk/gtktooltips.c (gtk_tooltips_event_handler): + Don't return TRUE from the event handler, that blocks all + event signals on the tooltip widget. Now you can press buttons + in toolbars again. + Wed Mar 28 19:20:43 2001 Owen Taylor * gtk/testtext.c (create_buffer): Add missing NULL on diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 1d47c86b5a..79c738ddd5 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,10 @@ +2001-03-29 Alexander Larsson + + * gtk/gtktooltips.c (gtk_tooltips_event_handler): + Don't return TRUE from the event handler, that blocks all + event signals on the tooltip widget. Now you can press buttons + in toolbars again. + Wed Mar 28 19:20:43 2001 Owen Taylor * gtk/testtext.c (create_buffer): Add missing NULL on diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 1d47c86b5a..79c738ddd5 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,10 @@ +2001-03-29 Alexander Larsson + + * gtk/gtktooltips.c (gtk_tooltips_event_handler): + Don't return TRUE from the event handler, that blocks all + event signals on the tooltip widget. Now you can press buttons + in toolbars again. + Wed Mar 28 19:20:43 2001 Owen Taylor * gtk/testtext.c (create_buffer): Add missing NULL on diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 1d47c86b5a..79c738ddd5 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,10 @@ +2001-03-29 Alexander Larsson + + * gtk/gtktooltips.c (gtk_tooltips_event_handler): + Don't return TRUE from the event handler, that blocks all + event signals on the tooltip widget. Now you can press buttons + in toolbars again. + Wed Mar 28 19:20:43 2001 Owen Taylor * gtk/testtext.c (create_buffer): Add missing NULL on diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 1d47c86b5a..79c738ddd5 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,10 @@ +2001-03-29 Alexander Larsson + + * gtk/gtktooltips.c (gtk_tooltips_event_handler): + Don't return TRUE from the event handler, that blocks all + event signals on the tooltip widget. Now you can press buttons + in toolbars again. + Wed Mar 28 19:20:43 2001 Owen Taylor * gtk/testtext.c (create_buffer): Add missing NULL on diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 1d47c86b5a..79c738ddd5 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,10 @@ +2001-03-29 Alexander Larsson + + * gtk/gtktooltips.c (gtk_tooltips_event_handler): + Don't return TRUE from the event handler, that blocks all + event signals on the tooltip widget. Now you can press buttons + in toolbars again. + Wed Mar 28 19:20:43 2001 Owen Taylor * gtk/testtext.c (create_buffer): Add missing NULL on diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 1d47c86b5a..79c738ddd5 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,10 @@ +2001-03-29 Alexander Larsson + + * gtk/gtktooltips.c (gtk_tooltips_event_handler): + Don't return TRUE from the event handler, that blocks all + event signals on the tooltip widget. Now you can press buttons + in toolbars again. + Wed Mar 28 19:20:43 2001 Owen Taylor * gtk/testtext.c (create_buffer): Add missing NULL on diff --git a/gtk/gtktooltips.c b/gtk/gtktooltips.c index 52a3f0b38a..fb25448f51 100644 --- a/gtk/gtktooltips.c +++ b/gtk/gtktooltips.c @@ -489,7 +489,7 @@ gtk_tooltips_event_handler (GtkWidget *widget, default: gtk_tooltips_set_active_widget (tooltips, NULL); - return TRUE; + return FALSE; break; }