aboutsummaryrefslogtreecommitdiff
path: root/tinywl
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-02-01 15:00:42 +0100
committerSimon Ser <contact@emersion.fr>2023-02-01 15:00:42 +0100
commit3668c9d86c866ec25048eb136701681c49bea62a (patch)
tree6b630bb069cdc62cdad8c1a6ea4846925a7760b5 /tinywl
parent4097eb20f33a19560ade52bfca8ca99161e9598c (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 'tinywl')
-rw-r--r--tinywl/tinywl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinywl/tinywl.c b/tinywl/tinywl.c
index af57284b..d3ff2d09 100644
--- a/tinywl/tinywl.c
+++ b/tinywl/tinywl.c
@@ -450,7 +450,7 @@ static void process_cursor_motion(struct tinywl_server *server, uint32_t time) {
* default. This is what makes the cursor image appear when you move it
* around the screen, not over any views. */
wlr_xcursor_manager_set_cursor_image(
- server->cursor_mgr, "left_ptr", server->cursor);
+ server->cursor_mgr, "default", server->cursor);
}
if (surface) {
/*