diff options
author | Vitalii Vorobiov <vi.vorobiov@samsung.com> | 2017-02-13 16:27:55 +0200 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-11-07 11:54:09 +0900 |
commit | 73bfd4f04d6b9885bab271d16c688f97dcf626a3 (patch) | |
tree | 80b502c91af4cf30705bdaab606ab38aa66345c5 | |
parent | 532557cabdd6fd24e62c7756c927230f24ab6b89 (diff) | |
download | efl-73bfd4f04d6b9885bab271d16c688f97dcf626a3.tar.gz |
efl_gfx_path: fix typo in _path_bounds_get
Wrong position was used while going through the array of
points
@fix
-rw-r--r-- | src/lib/efl/interfaces/efl_gfx_path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/efl/interfaces/efl_gfx_path.c b/src/lib/efl/interfaces/efl_gfx_path.c index 3501379a75..df424c1d3e 100644 --- a/src/lib/efl/interfaces/efl_gfx_path.c +++ b/src/lib/efl/interfaces/efl_gfx_path.c @@ -221,7 +221,7 @@ _efl_gfx_path_bounds_get(Eo *obj EINA_UNUSED, Efl_Gfx_Path_Data *pd, Eina_Rect * maxx = pd->points[0]; maxy = pd->points[1]; - for (i = 1; i < pd->points_count; i += 2) + for (i = 2; i < pd->points_count; i += 2) { minx = minx < pd->points[i] ? minx : pd->points[i]; miny = miny < pd->points[i + 1] ? miny : pd->points[i + 1]; |