diff --git a/data/themes/default.edc b/data/themes/default.edc index f78514cef..38d4bf975 100644 --- a/data/themes/default.edc +++ b/data/themes/default.edc @@ -29385,6 +29385,7 @@ collections { /* End of FreeDesktop.Org icons */ //E Specific icons ICON("everything-launch","icon_advanced.png",64) + ICON("everything-clipboard","icon_evry_clipboard.png", 256) //EFM Mime icons ICONMIME("inode/chardevice","icon_efm_file.png",128) ICONMIME("inode/blockdevice","icon_efm_file.png",128) diff --git a/data/themes/images/Makefile.am b/data/themes/images/Makefile.am index 4bfab069b..65384ae5f 100644 --- a/data/themes/images/Makefile.am +++ b/data/themes/images/Makefile.am @@ -188,6 +188,7 @@ icon_efm_view.png \ icon_efm_vol_unmounted.png \ icon_efm_vol_mounted.png \ icon_efm_usbmedia.png \ +icon_evry_clipboard.png \ icon_engine.png \ icon_extensions.png \ icon_favorites.png \ diff --git a/data/themes/images/icon_evry_clipboard.png b/data/themes/images/icon_evry_clipboard.png new file mode 100644 index 000000000..a42602b29 Binary files /dev/null and b/data/themes/images/icon_evry_clipboard.png differ diff --git a/src/modules/everything/evry_plug_clipboard.c b/src/modules/everything/evry_plug_clipboard.c index ffc8bcee0..d01fbc987 100644 --- a/src/modules/everything/evry_plug_clipboard.c +++ b/src/modules/everything/evry_plug_clipboard.c @@ -30,7 +30,8 @@ evry_plug_clipboard_init(void) Ecore_X_Window win = ecore_x_window_new(0, 0, 0, 1, 1); if (!win) return EINA_FALSE; - act = evry_action_new("Copy to Clipboard", "TEXT", NULL, NULL, "edit-copy", +//FIXME: Icon name doesnt follow FDO Spec + act = evry_action_new("Copy to Clipboard", "TEXT", NULL, NULL, "everything-clipboard", _action, _check_item, NULL, NULL, NULL, NULL); evry_action_register(act, 10);