diff options
author | Larry Ewing <lewing@ximian.com> | 2003-01-18 14:15:22 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2003-01-18 14:15:22 +0800 |
commit | 8f44e1e0f95a02cc1c679f105d2aa8f6533cecf1 (patch) | |
tree | ca073416e4f13649617bf8f4131f25da5d39abc6 | |
parent | e8b706f3e58e3b508e63598aaaf1934eaa2ddaf2 (diff) | |
download | gsoc2013-evolution-8f44e1e0f95a02cc1c679f105d2aa8f6533cecf1.tar gsoc2013-evolution-8f44e1e0f95a02cc1c679f105d2aa8f6533cecf1.tar.gz gsoc2013-evolution-8f44e1e0f95a02cc1c679f105d2aa8f6533cecf1.tar.bz2 gsoc2013-evolution-8f44e1e0f95a02cc1c679f105d2aa8f6533cecf1.tar.lz gsoc2013-evolution-8f44e1e0f95a02cc1c679f105d2aa8f6533cecf1.tar.xz gsoc2013-evolution-8f44e1e0f95a02cc1c679f105d2aa8f6533cecf1.tar.zst gsoc2013-evolution-8f44e1e0f95a02cc1c679f105d2aa8f6533cecf1.zip |
make the event handlers return FALSE so that gtkhtml can process the
2003-01-18 Larry Ewing <lewing@ximian.com>
* 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
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | 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 <lewing@ximian.com> + + * 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 <lewing@ximian.com> * 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 |