@bugfix: Create window pointer for wayland clients

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-03-17 13:56:35 +00:00
parent 9e68b402a4
commit 3d28a91c6b
1 changed files with 5 additions and 0 deletions

View File

@ -349,6 +349,11 @@ e_win_new(E_Comp *c)
win->pointer = e_pointer_window_new(win->evas_win, 1);
win->pointer->color = c->pointer->color;
}
else if (c->comp_type == E_PIXMAP_TYPE_WL)
{
win->pointer = e_pointer_canvas_new(win->evas, 1);
win->pointer->color = c->pointer->color;
}
return win;
}