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 4bbd40a62ec4f0d15c34da956300282d69291cc8
Author: [email protected] <[email protected]>
AuthorDate: Sun Mar 15 18:32:03 2026 -0600
fix(networkmanager): tie forget icon lifetime to button, not row
elm_icon_add(end) instead of elm_icon_add(parent) so the icon is
owned by the button and cannot outlive it during genlist rebuilds.
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
---
src/modules/networkmanager/e_mod_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/modules/networkmanager/e_mod_main.c b/src/modules/networkmanager/e_mod_main.c
index 3604507af..2581ffda2 100644
--- a/src/modules/networkmanager/e_mod_main.c
+++ b/src/modules/networkmanager/e_mod_main.c
@@ -430,7 +430,7 @@ _enm_ap_end_new(struct NM_Manager *nm, struct NM_Access_Point *ap,
end = elm_button_add(parent);
elm_object_style_set(end, "overlay");
- ic = elm_icon_add(parent);
+ ic = elm_icon_add(end);
elm_icon_standard_set(ic, "edit-delete");
elm_object_content_set(end, ic);
evas_object_show(ic);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.