and oops.. fix my fox to coord xlations. working now.

SVN revision: 58630
This commit is contained in:
Carsten Haitzler 2011-04-13 12:12:41 +00:00
parent 9c4345a997
commit 18ecece5f3
1 changed files with 2 additions and 2 deletions

View File

@ -150,8 +150,8 @@ _ecore_evas_buffer_coord_translate(Ecore_Evas *ee, Evas_Coord *x, Evas_Coord *y)
if ((fx == 0) && (fy == 0) && (fw == ww) && (fh == hh)) if ((fx == 0) && (fy == 0) && (fw == ww) && (fh == hh))
{ {
*x = (ee->w * *x) / fw; *x = (ee->w * (*x - xx)) / fw;
*y = (ee->h * *y) / fh; *y = (ee->h * (*y - yy)) / fh;
} }
else else
{ {