Don't need vw/vh here as they are never used.
authorChristopher Michael <cpmichael1@comcast.net>
Wed, 18 Nov 2009 06:33:38 +0000 (06:33 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Wed, 18 Nov 2009 06:33:38 +0000 (06:33 +0000)
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

src/modules/conf_wallpaper/e_int_config_wallpaper_web.c

index 70b04c6..93f2668 100644 (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;
 }