Don't need vw/vh here as they are never used.

Trying to track down why the list of wallpapers does not scroll so if
someone knows this code better, by all means, jump in :)



SVN revision: 43775
This commit is contained in:
Christopher Michael 2009-11-18 06:33:38 +00:00
parent fbb29d0e14
commit 8f7fcb77e6
1 changed files with 1 additions and 2 deletions

View File

@ -51,10 +51,9 @@ _web_pan_max_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y)
static void
_web_pan_child_size_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y)
{
Evas_Coord tw, th, vw, vh;
Evas_Coord tw, th;
evas_object_size_hint_min_get(obj, &tw, &th);
evas_object_geometry_get(obj, NULL, NULL, &vw, &vh);
if (x) *x = tw;
if (y) *y = th;
}