From 546346d8bc432b94c63b4d7e3bff4186d3443035 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 11 Nov 2015 17:38:52 -0500 Subject: [PATCH] use bring_in for zoom keyboard navigation --- src/zoom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zoom.c b/src/zoom.c index 455a004..350fd8f 100644 --- a/src/zoom.c +++ b/src/zoom.c @@ -324,7 +324,7 @@ _zoom_key(void *d EINA_UNUSED, int t EINA_UNUSED, Ecore_Event_Key *ev) evas_object_geometry_get(e, &x, &y, &w, &h); scr = elm_object_part_content_get(evas_object_data_get(e, "__DSZOOMOBJ"), "e.swallow.layout"); zone = e_comp_object_util_zone_get(scr); - elm_scroller_region_show(scr, x - zone->x, y - zone->y, w, h); + elm_scroller_region_bring_in(scr, x - zone->x, y - zone->y, w, h); } return ECORE_CALLBACK_DONE; }