It will use the stock 'x' cursor instead when the system cursors are not
provided.

Signed-off-by: Tiago Vignatti <tiago.vigna...@intel.com>
---
On my tree I've implemented a fallback on pre-made cursor for the "left_ptr",
which is the only one being used there:

http://cgit.freedesktop.org/~vignatti/weston/commit/?h=xwm-client&id=cf4abbde09edb373a3277a17dbdca80e076d09fb

 src/xwayland/window-manager.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/xwayland/window-manager.c b/src/xwayland/window-manager.c
index f5571a5..4b1ab98 100644
--- a/src/xwayland/window-manager.c
+++ b/src/xwayland/window-manager.c
@@ -206,6 +206,9 @@ xcb_cursor_library_load_cursor(struct weston_wm *wm, const 
char *file)
                size = 32;
 
        images = XcursorLibraryLoadImages (file, NULL, size);
+       if (!images)
+               return -1;
+
        cursor = xcb_cursor_images_load_cursor (wm, images);
        XcursorImagesDestroy (images);
 
-- 
1.7.9.5

_______________________________________________
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Reply via email to