Remove printfs, revert code to previous version (was debugging why the

scroller does not work on the web dialog)



SVN revision: 43829
This commit is contained in:
Christopher Michael 2009-11-20 17:18:14 +00:00
parent 45cc4194e6
commit be5c2fad69
1 changed files with 1 additions and 3 deletions

View File

@ -26,9 +26,7 @@ _web_pan_set(Evas_Object *obj, Evas_Coord x, Evas_Coord y)
evas_object_geometry_get(obj, NULL, NULL, NULL, &vh);
if (y < 0) y = 0;
printf("Web Pan Set: %d %d\n", th, vh);
if (y > vh - th) y = vh - th;
printf("Web Pan Offset: %d\n", y);
if (y > vh - th) y = th - vh;
exchange_smart_object_offset_set(obj, 0, y);
}