diff options
author | Dan Vrátil <dvratil@redhat.com> | 2012-06-18 19:39:50 +0800 |
---|---|---|
committer | Dan Vrátil <dvratil@redhat.com> | 2012-06-18 19:42:39 +0800 |
commit | 031c40a51791b2ebcd44f880c96860b987e1a00c (patch) | |
tree | 641acc9c69ab39a6d2aa9af724c30e438f5e3710 /addressbook | |
parent | 88a372b27e655eaaa27e7b806a1adc360b1583b6 (diff) | |
download | gsoc2013-evolution-031c40a51791b2ebcd44f880c96860b987e1a00c.tar.gz gsoc2013-evolution-031c40a51791b2ebcd44f880c96860b987e1a00c.tar.zst gsoc2013-evolution-031c40a51791b2ebcd44f880c96860b987e1a00c.zip |
Bug #764467 - URL popup shows all Copy options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c index 677d258439..28fd5b02be 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -418,7 +418,8 @@ contact_display_load_status_changed (WebKitWebView *web_view, } static void -contact_display_update_actions (EWebView *web_view) +contact_display_update_actions (EWebView *web_view, + GdkEventButton *event) { GtkActionGroup *action_group; gboolean scheme_is_internal_mailto; @@ -427,7 +428,7 @@ contact_display_update_actions (EWebView *web_view) const gchar *uri; /* Chain up to parent's update_actions() method. */ - E_WEB_VIEW_CLASS (parent_class)->update_actions (web_view); + E_WEB_VIEW_CLASS (parent_class)->update_actions (web_view, event); uri = e_web_view_get_selected_uri (web_view); |