This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efm2.
View the commit online.
commit 794eb0c12dabaf65eec46e5b3be96eec1fb280fc
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Thu May 29 11:19:40 2025 +0100
fiddling and improving
---
src/efm/efm_popup_menu.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/efm/efm_popup_menu.c b/src/efm/efm_popup_menu.c
index e5386cb..98cfd96 100644
--- a/src/efm/efm_popup_menu.c
+++ b/src/efm/efm_popup_menu.c
@@ -300,11 +300,10 @@ _efm_popup_icon_menu_add(Smart_Data *sd, Icon *ic, Evas_Coord x, Evas_Coord y)
Eina_Bool have_sel = EINA_FALSE; // have any selected icons
Eina_Bool have_nosel = EINA_FALSE; // have no icons selected at all
- printf("POPUP MENU ICON\n");
+ printf("POPUP MENU\n");
if (_efm_sel_first_get(sd)) have_sel = EINA_TRUE;
if (_efm_sel_not_count(sd) != 0) have_nosel = EINA_TRUE;
- // XXX what if ic is gone by time menu activated?
ctx = calloc(1, sizeof(Popup_Context));
if (!ctx) return NULL;
ctx->sd = sd;
@@ -316,6 +315,7 @@ _efm_popup_icon_menu_add(Smart_Data *sd, Icon *ic, Evas_Coord x, Evas_Coord y)
m1 = _efm_menu_add("File", "std:file", _cb_menu_file_done, ctx, NULL);
_efm_menu_it_normal(m1, "Open", "std:document-open", !have_sel,
_cb_menu_item_open, ctx, d_main);
+ // open with
{
Efreet_Desktop *d;
Eina_List *mimes = NULL;
@@ -368,8 +368,8 @@ _efm_popup_icon_menu_add(Smart_Data *sd, Icon *ic, Evas_Coord x, Evas_Coord y)
if (m2) _efm_menu_it_normal(m2, "Select ...", NULL, EINA_FALSE,
_cb_menu_item_open_all, ctx, NULL);
}
- // actions
_efm_menu_it_separator(m1);
+ // actions
{
m2 = _efm_menu_add("Actions", NULL, NULL, NULL, NULL);
_efm_menu_it_sub(m1, "Actions", NULL, EINA_FALSE, m2);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.