Elemenatry: Fixed an issue with elm_scrolled_entry_cursor_end_set not showing the...
authorTom Hacohen <tom@stosb.com>
Mon, 24 Jan 2011 03:01:36 +0000 (03:01 +0000)
committerTom Hacohen <tom@stosb.com>
Mon, 24 Jan 2011 03:01:36 +0000 (03:01 +0000)
SVN revision: 56278

src/lib/elc_scrolled_entry.c

index afd3db0..db7f09c 100644 (file)
@@ -1008,10 +1008,10 @@ elm_scrolled_entry_cursor_end_set(Evas_Object *obj)
 {
    ELM_CHECK_WIDTYPE(obj, widtype);
    Widget_Data *wd = elm_widget_data_get(obj);
+   Evas_Coord x, y, w, h;
    if (!wd) return;
-   int x, y, w, h;
-   elm_scroller_region_get(wd->scroller, &x, &y, &w, &h);
    elm_entry_cursor_end_set(wd->entry);
+   elm_entry_cursor_geometry_get(wd->entry, &x, &y, &w, &h);
    elm_scroller_region_show(wd->scroller, x, y, w, h);
 }