From c2b7cdb16c602f508f0a88d1e6d8d7cbcb8a2e81 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 6 Aug 2012 14:11:39 +0000 Subject: [PATCH] ensure that application properties is not shown for any file beginning with | SVN revision: 74944 --- src/bin/e_fm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index e4cc14893..e254806dc 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -8405,7 +8405,7 @@ _e_fm2_icon_menu(E_Fm2_Icon *ic, Evas_Object *obj, unsigned int timestamp) } } - if ((!ic->info.removable) && ic->info.mime && (!strcmp(ic->info.mime, "application/x-desktop"))) + if ((!ic->info.removable) && ic->info.file && (ic->info.file[0] != '|') && ic->info.mime && (!strcmp(ic->info.mime, "application/x-desktop"))) { mi = e_menu_item_new(mn); e_menu_item_label_set(mi, _("Application Properties"));