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 666c80c5329b19f7c3293109ff47cb2c85a96846
Author: [email protected] <[email protected]>
AuthorDate: Mon Mar 9 21:25:50 2026 -0600
feat(networkmanager): add forget button and lock overlay to wifi list items
- Security signal now emitted to wifi icon for lock overlay
- End widget replaced with forget button for saved networks
- Forget button uses evas_object_propagate_events_set to prevent
list item selection on click
- Saved connections hash queried on popup open
Co-Authored-By: Claude Opus 4.6 <[email protected]>
---
src/modules/networkmanager/e_mod_main.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/modules/networkmanager/e_mod_main.c b/src/modules/networkmanager/e_mod_main.c
index ae00a016d..dc0031faf 100644
--- a/src/modules/networkmanager/e_mod_main.c
+++ b/src/modules/networkmanager/e_mod_main.c
@@ -217,6 +217,12 @@ _enm_ap_end_new(struct NM_Manager *nm, struct NM_Access_Point *ap, Evas *evas)
}
fd->nm = nm;
fd->connection_path = eina_stringshare_add(conn_path);
+ if (!fd->connection_path)
+ {
+ free(fd);
+ evas_object_del(end);
+ return NULL;
+ }
evas_object_propagate_events_set(end, EINA_FALSE);
evas_object_event_callback_add(end, EVAS_CALLBACK_MOUSE_UP,
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.