linkbutton: Use proper action name for right-click menu

This commit is contained in:
Timm Bäder 2019-08-25 14:22:46 +02:00
parent 5782871f91
commit 6be4279f39

View File

@ -244,7 +244,7 @@ gtk_link_button_get_menu_model (void)
menu = g_menu_new ();
section = g_menu_new ();
g_menu_append (section, _("_Copy URL"), "context.copy-clipboard");
g_menu_append (section, _("_Copy URL"), "clipboard.copy");
g_menu_append_section (menu, NULL, G_MENU_MODEL (section));
g_object_unref (section);