From 8f44e1e0f95a02cc1c679f105d2aa8f6533cecf1 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Sat, 18 Jan 2003 06:15:22 +0000 Subject: make the event handlers return FALSE so that gtkhtml can process the 2003-01-18 Larry Ewing * mail-display.c (html_button_press_event): make the event handlers return FALSE so that gtkhtml can process the events. svn path=/trunk/; revision=19514 --- mail/ChangeLog | 5 +++++ mail/mail-display.c | 9 ++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 3d35da3a69..342d2a3661 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2003-01-18 Larry Ewing + + * mail-display.c (html_button_press_event): make the event + handlers return FALSE so that gtkhtml can process the events. + 2003-01-17 Larry Ewing * mail-format.c (handle_text_enriched): wrap eriched entries with diff --git a/mail/mail-display.c b/mail/mail-display.c index 567966030a..e5ccf7c24a 100644 --- a/mail/mail-display.c +++ b/mail/mail-display.c @@ -2447,9 +2447,8 @@ html_button_press_event (GtkWidget *widget, GdkEventButton *event, MailDisplay * } html_point_destroy (point); - } - - return TRUE; + return TRUE; + } } } @@ -2496,7 +2495,7 @@ html_enter_notify_event (GtkWidget *widget, GdkEventCrossing *event, MailDisplay { update_active (widget, event->x, event->y, mail_display); - return TRUE; + return FALSE; } static int @@ -2517,7 +2516,7 @@ html_motion_notify_event (GtkWidget *widget, GdkEventMotion *event, MailDisplay update_active (widget, x, y, mail_display); - return TRUE; + return FALSE; } static void -- cgit v1.2.3