ecore-evas-wayland: Fix issue of setting NULL cursor object

Summary: If we are calling ecore_evas_object_cursor_set with a NULL
object, then we need to inform the ecore_wayland window that we no
longer have a cursor surface.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-05-04 12:37:56 -04:00
parent 4cfff13f73
commit 5754e8ccc5
1 changed files with 1 additions and 0 deletions

View File

@ -1222,6 +1222,7 @@ _ecore_evas_wl_common_object_cursor_set(Ecore_Evas *ee, Evas_Object *obj, int la
old = ee->prop.cursor.object;
if (obj == NULL)
{
ecore_wl_window_pointer_set(wdata->win, NULL, 0, 0);
ee->prop.cursor.object = NULL;
ee->prop.cursor.layer = 0;
ee->prop.cursor.hot.x = 0;