Fixed in EFL svn now, Thanks :) Dh
> -----Original Message----- > From: [email protected] [mailto:[email protected]] > Sent: 23 May 2012 08:32 > To: [email protected] > Cc: [email protected] > Subject: [E-devel] [PATCH] Wayland: Fix not add input. > > From: Alex Wu <[email protected]> > > wl_seat adopation patch didn't change the interface name from > "wl_input_device" to "wl_seat" at global object listener handler, > so that no input will be added. > --- > src/lib/ecore_wayland/ecore_wl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/lib/ecore_wayland/ecore_wl.c > b/src/lib/ecore_wayland/ecore_wl.c > index 33d69e2..5abbd24 100644 > --- a/src/lib/ecore_wayland/ecore_wl.c > +++ b/src/lib/ecore_wayland/ecore_wl.c > @@ -407,7 +407,7 @@ _ecore_wl_cb_handle_global(struct wl_display *disp, > unsigned int id, const char > ewd->wl.compositor = wl_display_bind(disp, id, > &wl_compositor_interface); > else if (!strcmp(interface, "wl_output")) > _ecore_wl_output_add(ewd, id); > - else if (!strcmp(interface, "wl_input_device")) > + else if (!strcmp(interface, "wl_seat")) > _ecore_wl_input_add(ewd, id); > else if (!strcmp(interface, "wl_shell")) > ewd->wl.shell = wl_display_bind(disp, id, &wl_shell_interface); > -- > 1.7.9.5 > > > ----------------------------------------------------------------------- > ------- > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. > Discussions > will include endpoint security, mobile security and the latest in > malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > enlightenment-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel _______________________________________________ wayland-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/wayland-devel
