From 2053a4c144bdde2df5cb7b6b7036cde008372493 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 30 Mar 2018 21:02:28 -0400 Subject: [PATCH] Add more exotic cursor for layer shell example So it's more obvious that it's being set --- examples/layer-shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/layer-shell.c b/examples/layer-shell.c index 89fa9ea9..f084d10f 100644 --- a/examples/layer-shell.c +++ b/examples/layer-shell.c @@ -388,7 +388,7 @@ int main(int argc, char **argv) { assert(cursor_theme = wl_cursor_theme_load(NULL, 16, shm)); struct wl_cursor *cursor; - assert(cursor = wl_cursor_theme_get_cursor(cursor_theme, "left_ptr")); + assert(cursor = wl_cursor_theme_get_cursor(cursor_theme, "crosshair")); cursor_image = cursor->images[0]; assert(cursor_surface = wl_compositor_create_surface(compositor));