This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efm2.
View the commit online.
commit fe23746cd9feaa2624d022d548942d4ad5dc6d0f
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Thu Jul 25 14:40:48 2024 +0100
fix icon geom with keep aspect on
---
src/efm/efm_icon.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/efm/efm_icon.c b/src/efm/efm_icon.c
index 8e18cb2..e059652 100644
--- a/src/efm/efm_icon.c
+++ b/src/efm/efm_icon.c
@@ -550,7 +550,7 @@ _smart_calculate(Evas_Object *obj)
geom.x = geom.x + ((geom.w - nw) / 2);
geom.y = geom.y + ((geom.h - nh) / 2);
geom.w = nw;
- geom.h = nw;
+ geom.h = nh;
}
if (sd->o_image)
evas_object_geometry_set(sd->o_image, geom.x, geom.y, geom.w, geom.h);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.