Elm: Call function to set wayland mouse pointer.

SVN revision: 67817
This commit is contained in:
Christopher Michael 2012-02-10 09:17:49 +00:00
parent dcee2d3a6b
commit a4b470eced
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ struct _Elm_Win
Ecore_Evas *ee;
Evas *evas;
Evas_Object *obj, *hot_obj;
int hot_x, hot_y;
} pointer;
struct {
Evas_Object *top;
@ -633,6 +634,7 @@ _elm_win_obj_intercept_show(void *data, Evas_Object *obj)
{
ecore_evas_show(win->pointer.ee);
evas_object_show(win->pointer.obj);
ecore_evas_wayland_pointer_set(win->pointer.ee, 10, 10);
}
evas_object_show(obj);
}