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 a65678d586f8c1bd6808a3794b865655397c1b99
Author: Alastair Poole <[email protected]>
AuthorDate: Tue Mar 17 00:02:09 2026 +0000
procstats: handle e client border change.
This fixes an issue where a border change would make an
abandoned popup.
Thanks boycott for the bug report in IRC.
@fix
---
src/modules/procstats/e_mod_main.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/modules/procstats/e_mod_main.c b/src/modules/procstats/e_mod_main.c
index 06611acb7..1401eb1b1 100644
--- a/src/modules/procstats/e_mod_main.c
+++ b/src/modules/procstats/e_mod_main.c
@@ -337,7 +337,14 @@ _proc_stats_client_gone(Proc_Stats_Client *client)
EINA_LIST_FOREACH(e_comp->clients, l, ec)
{
- if (client->ec == ec) return 0;
+ if (client->ec == ec)
+ {
+
+ if (!edje_object_part_exists(ec->frame_object, "e.procstats.swallow"))
+ return 1;
+
+ return 0;
+ }
}
return 1;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.