aboutsummaryrefslogtreecommitdiffstats
path: root/src/popup-commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/popup-commands.c')
-rw-r--r--src/popup-commands.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/popup-commands.c b/src/popup-commands.c
index c9177886c..0380e86d4 100644
--- a/src/popup-commands.c
+++ b/src/popup-commands.c
@@ -204,6 +204,10 @@ popup_cmd_copy_link_address (GtkAction *action,
{
ephy_embed_event_get_property (event, "link-uri", &value);
address = g_value_get_string (&value);
+
+ if (g_str_has_prefix (address, "mailto:"))
+ address = address + 7;
+
popup_cmd_copy_to_clipboard (window, address);
g_value_unset (&value);
}