This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enventor.
View the commit online.
commit 92fc6d93c011bcd9cd67fff67424f8622ab7d629
Author: Thanatermesis <[email protected]>
AuthorDate: Mon Feb 23 16:08:30 2026 -0500
fix: Add missing Edje part type string conversions
I have reviewed src/lib/util.c and identified a few missing Edje_Part_Type mappings in part_type_str_convert. Adding these ensures that all common Edje part types return a
specific string rather than the generic "part", improving consistency and correctness in how the UI or parser interprets these types.
---
src/lib/util.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/lib/util.c b/src/lib/util.c
index 3ae1fde..a2c4b07 100644
--- a/src/lib/util.c
+++ b/src/lib/util.c
@@ -28,6 +28,14 @@ part_type_str_convert(Edje_Part_Type type)
return "textblock";
case EDJE_PART_TYPE_SPACER:
return "spacer";
+ case EDJE_PART_TYPE_GROUP:
+ return "group";
+ case EDJE_PART_TYPE_BOX:
+ return "box";
+ case EDJE_PART_TYPE_TABLE:
+ return "table";
+ case EDJE_PART_TYPE_PROXY:
+ return "proxy";
default:
return "part";
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.