diff options
author | Simon Ser <contact@emersion.fr> | 2023-02-01 15:00:42 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-02-01 15:00:42 +0100 |
commit | 3668c9d86c866ec25048eb136701681c49bea62a (patch) | |
tree | 6b630bb069cdc62cdad8c1a6ea4846925a7760b5 /include | |
parent | 4097eb20f33a19560ade52bfca8ca99161e9598c (diff) |
examples, tinywl: use "default" cursor instead of "left_ptr"
"left_ptr" is the X11 name, "default" is the cursor spec name.
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/xcursor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/xcursor.h b/include/wlr/xcursor.h index d21025cc..bb75119b 100644 --- a/include/wlr/xcursor.h +++ b/include/wlr/xcursor.h @@ -105,7 +105,7 @@ struct wlr_xcursor_theme *wlr_xcursor_theme_load(const char *name, int size); void wlr_xcursor_theme_destroy(struct wlr_xcursor_theme *theme); /** - * Obtain a cursor for the specified name (e.g. "left_ptr"). + * Obtain a cursor for the specified name (e.g. "default"). * * If the cursor could not be found, NULL is returned. */ |