diff options
author | Ashish Shrivastava <shashish@novell.com> | 2008-04-29 19:09:29 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@src.gnome.org> | 2008-04-29 19:09:29 +0800 |
commit | cf7c2c6ecd7a590bffc75cb7b5914796fec7e6c4 (patch) | |
tree | 1c7b21e5b6fbb4dc0b44f48f44652ccf4457c0ca /calendar/gui/e-select-names-renderer.c | |
parent | e8b4cd06534f0c7d45563e65a43c3004e6ed0688 (diff) | |
download | gsoc2013-evolution-cf7c2c6ecd7a590bffc75cb7b5914796fec7e6c4.tar.gz gsoc2013-evolution-cf7c2c6ecd7a590bffc75cb7b5914796fec7e6c4.tar.zst gsoc2013-evolution-cf7c2c6ecd7a590bffc75cb7b5914796fec7e6c4.zip |
Patch from Ashish Shrivastava <shashish@novell.com>
2008-04-29 Ashish Shrivastava <shashish@novell.com>
** Fix for bnc #368277
Can't C & P Email Addresses from an Appt. to a Mail Message
svn path=/branches/gnome-2-22/; revision=35441
Diffstat (limited to 'calendar/gui/e-select-names-renderer.c')
-rw-r--r-- | calendar/gui/e-select-names-renderer.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/gui/e-select-names-renderer.c b/calendar/gui/e-select-names-renderer.c index e1c001cdc5..df0a1ef57f 100644 --- a/calendar/gui/e-select-names-renderer.c +++ b/calendar/gui/e-select-names-renderer.c @@ -109,7 +109,9 @@ e_select_names_renderer_start_editing (GtkCellRenderer *cell, GdkEvent *event, G gtk_widget_show (GTK_WIDGET (editable)); g_signal_connect (editable, "editing_done", G_CALLBACK (e_select_names_renderer_editing_done), sn_cell); - g_signal_connect (editable, "focus_out_event", G_CALLBACK (e_select_names_renderer_focus_out_event), sn_cell); + + /* Removed focus-out-event. focus out event already listen by base class. + We don't need to listen for the focus out event any more */ sn_cell->priv->editable = g_object_ref (editable); sn_cell->priv->path = g_strdup (path); |