diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-06-02 22:19:27 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-06-02 22:19:27 +0800 |
commit | 73f82e672d56fda85ea3dc1e3a0bbe35aca339a8 (patch) | |
tree | a69d5692fbc5a142cb028d7be6b68d1377f83f88 /calendar/gui/e-day-view.c | |
parent | 9dd5dd01a2ef443223aa1a26632318247edbc0c6 (diff) | |
download | gsoc2013-evolution-73f82e672d56fda85ea3dc1e3a0bbe35aca339a8.tar.gz gsoc2013-evolution-73f82e672d56fda85ea3dc1e3a0bbe35aca339a8.tar.zst gsoc2013-evolution-73f82e672d56fda85ea3dc1e3a0bbe35aca339a8.zip |
Fixes #43763
2003-05-29 Rodrigo Moya <rodrigo@ximian.com>
Fixes #43763
* gui/e-week-view.c (e_week_view_init): use g_signal_connect_after
for "button_press_event" callback.
* gui/e-day-view.c (e_day_view_init): ditto.
2003-05-29 JP Rosevear <jpr@ximian.com>
Fixes #43775
svn path=/trunk/; revision=21362
Diffstat (limited to 'calendar/gui/e-day-view.c')
-rw-r--r-- | calendar/gui/e-day-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index 6ae7d5553c..8b3e968d95 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -621,8 +621,8 @@ e_day_view_init (EDayView *day_view) gtk_table_attach (GTK_TABLE (day_view), day_view->top_canvas, 1, 2, 0, 1, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0); gtk_widget_show (day_view->top_canvas); - g_signal_connect (day_view->top_canvas, "button_press_event", - G_CALLBACK (e_day_view_on_top_canvas_button_press), day_view); + g_signal_connect_after (day_view->top_canvas, "button_press_event", + G_CALLBACK (e_day_view_on_top_canvas_button_press), day_view); g_signal_connect (day_view->top_canvas, "button_release_event", G_CALLBACK (e_day_view_on_top_canvas_button_release), day_view); g_signal_connect (day_view->top_canvas, "motion_notify_event", |