diff options
author | emersion <contact@emersion.fr> | 2018-09-26 16:58:54 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-09-26 17:01:01 +0200 |
commit | 9622efd6db2adc4c3bdfdd1ff88d2779b6fb0b1f (patch) | |
tree | f7ff9c0c51d6f44ce23f3e1a9087e3ab9cae4392 | |
parent | 5b687b4a9676448148aa8da1917b849857aae78f (diff) |
Fix unknown cursor in layer-shell example
-rw-r--r-- | examples/layer-shell.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/layer-shell.c b/examples/layer-shell.c index f56825c3..114b98f6 100644 --- a/examples/layer-shell.c +++ b/examples/layer-shell.c @@ -596,10 +596,16 @@ int main(int argc, char **argv) { assert(cursor_theme); struct wl_cursor *cursor = wl_cursor_theme_get_cursor(cursor_theme, "crosshair"); + if (cursor == NULL) { + cursor = wl_cursor_theme_get_cursor(cursor_theme, "left_ptr"); + } assert(cursor); cursor_image = cursor->images[0]; cursor = wl_cursor_theme_get_cursor(cursor_theme, "tcross"); + if (cursor == NULL) { + cursor = wl_cursor_theme_get_cursor(cursor_theme, "left_ptr"); + } assert(cursor); popup_cursor_image = cursor->images[0]; |