This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch ibar-onclick-toggle
in repository enlightenment.
View the commit online.
commit eb1eaa5128a90e69205331517f0e33705dd01074
Author: Swagtoy <m...@ow.swag.toys>
AuthorDate: Thu Jun 26 13:16:44 2025 -0400
Actions: Make commands also force launch
I was told this should happen. I.e. keybind mapped to launch a terminal instance, it is very likely the user wants another...
---
src/bin/e_actions.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c
index 6e38af371..a724a5c51 100644
--- a/src/bin/e_actions.c
+++ b/src/bin/e_actions.c
@@ -2110,7 +2110,7 @@ ACT_FN_GO(exec, )
if (zone)
{
if (params)
- e_exec(zone, NULL, params, NULL, "action/exec", EINA_FALSE);
+ e_exec(zone, NULL, params, NULL, "action/exec", EINA_TRUE);
}
}
@@ -2169,7 +2169,7 @@ ACT_FN_GO(app, )
desktop = efreet_util_desktop_exec_find(p);
if (desktop)
{
- e_exec(zone, desktop, NULL, NULL, "action/app", EINA_FALSE);
+ e_exec(zone, desktop, NULL, NULL, "action/app", EINA_TRUE);
efreet_desktop_free(desktop);
}
}
@@ -2197,7 +2197,7 @@ ACT_FN_GO(app_new_instance, EINA_UNUSED)
ec = (E_Client *)(void *)obj;
if (ec->desktop)
- e_exec(zone, ec->desktop, NULL, NULL, "action/app", EINA_FALSE);
+ e_exec(zone, ec->desktop, NULL, NULL, "action/app", EINA_TRUE);
}
/***************************************************************************/
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.