Added an entry in the contextual menu

This commit is contained in:
Pierre Pronchery 2013-05-20 07:26:12 +02:00
parent 18b53f28ca
commit 7101bd26fb

View File

@ -1006,6 +1006,12 @@ static void _context_menu_link(GHtml * ghtml, GtkWidget * menu)
image = gtk_image_new_from_stock(GTK_STOCK_SAVE_AS, GTK_ICON_SIZE_MENU);
gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menuitem), image);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
/* copy link location */
menuitem = gtk_image_menu_item_new_with_mnemonic(
_("_Copy link location"));
image = gtk_image_new_from_stock(GTK_STOCK_COPY, GTK_ICON_SIZE_MENU);
gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menuitem), image);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
}
static void _context_menu_media(GHtml * ghtml)