weston-launch: Rearrange code slightly

We need to initialize the main loops before our callback is called, so
this makes it make a slight bit of more sense.
This commit is contained in:
Jasper St. Pierre 2014-03-11 16:48:52 -04:00
parent 757b626aee
commit b11c75c1c9

View File

@ -354,8 +354,6 @@ meta_launcher_new (void)
self->weston_launch = g_socket_new_from_fd (launch_fd, NULL);
clutter_evdev_set_open_callback (on_evdev_device_open, self);
self->nested_context = g_main_context_new ();
self->nested_loop = g_main_loop_new (self->nested_context, FALSE);
@ -369,6 +367,8 @@ meta_launcher_new (void)
g_source_attach (self->inner_source, self->nested_context);
g_source_unref (self->inner_source);
clutter_evdev_set_open_callback (on_evdev_device_open, self);
return self;
}