This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository echart.
View the commit online.
commit 6d1793aa0997f1d7436f4366e7a1f8297a392b38
Author: Vincent Torri <[email protected]>
AuthorDate: Wed Jun 3 11:05:36 2026 +0200
line: fix resize
---
src/lib/echart_line.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/lib/echart_line.c b/src/lib/echart_line.c
index 0363a2f..2b4e0dd 100644
--- a/src/lib/echart_line.c
+++ b/src/lib/echart_line.c
@@ -136,6 +136,11 @@ _line_smart_resize(Evas_Object *obj, Evas_Coord w, Evas_Coord h)
evas_object_resize(sd->o_vg, w, h);
+ for (int j = 0; j < sd->nbr_series; j++)
+ {
+ evas_vg_shape_reset(sd->data[j].line);
+ }
+
evas_object_smart_changed(obj);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.