This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 66e083c61cc03acd20cb5c46119470903c97c17e
Author: Carsten Haitzler <[email protected]>
AuthorDate: Fri Oct 24 10:39:16 2025 +0100
ibar - listen to exec timeout on launch - fix busy forever
have busy spinner stop on timeout
@fix
---
src/modules/ibar/e_mod_main.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c
index 8eb9caa95..cd5c12bc3 100644
--- a/src/modules/ibar/e_mod_main.c
+++ b/src/modules/ibar/e_mod_main.c
@@ -1795,6 +1795,12 @@ _ibar_instance_watch(void *data, E_Exec_Instance *inst, E_Exec_Watch_Type type)
if (!eina_list_data_find(ic->exes, inst))
ic->exes = eina_list_append(ic->exes, inst);
break;
+ case E_EXEC_WATCH_TIMEOUT:
+ if (ic->starting) _ibar_icon_signal_emit(ic, "e,state,started", "e");
+ ic->starting = EINA_FALSE;
+ if (!ic->exes) _ibar_icon_signal_emit(ic, "e,state,on", "e");
+ if (ic->exe_inst == inst) ic->exe_inst = NULL;
+ break;
default:
break;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.