diff options
| -rw-r--r-- | AUTHORS | 6 | ||||
| -rw-r--r-- | shell/maynard.c | 7 |
2 files changed, 11 insertions, 2 deletions
@@ -1,4 +1,8 @@ Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> Jonny Lamb <jonny.lamb@collabora.co.uk> Marco Barisione <marco.barisione@collabora.co.uk> -Tiago Vignatti <tiago.vignatti@intel.com> + +Tiago Vignatti <tiago.vignatti@intel.com> is the author of + weston-gtk-shell, the original base for maynard, but did not take + part in maynard's development. Please don't bother him about maynard + specific queries! diff --git a/shell/maynard.c b/shell/maynard.c index 0baf750..1939e34 100644 --- a/shell/maynard.c +++ b/shell/maynard.c @@ -331,8 +331,13 @@ main (int argc, /* Wait until we have been notified about the compositor, * shell, and shell helper objects */ - while (!desktop->output || !desktop->shell || !desktop->helper) + if (!desktop->output || !desktop->shell || !desktop->helper) wl_display_roundtrip (desktop->display); + if (!desktop->output || !desktop->shell || !desktop->helper) + { + fprintf (stderr, "could not find output, shell or helper modules\n"); + return -1; + } css_setup (desktop); background_create (desktop); |
