From 7a7d7d5c195c6c91d900324a55b07d7ba5470b1c Mon Sep 17 00:00:00 2001 From: may Date: Sat, 5 Oct 2024 20:17:44 +0200 Subject: [PATCH] use Grabbing cursor instead of Grab cursor when i implemented the cursor-shape-v1 protocol i didn't notice that the previous `CursorShape::Grab` actually mapped to `CursorIcon::Grabbing` instead of `CursorIcon::Grab`. this fixes that "regression". --- src/shell/grabs/moving.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/grabs/moving.rs b/src/shell/grabs/moving.rs index 6c5e93fb..9a41702e 100644 --- a/src/shell/grabs/moving.rs +++ b/src/shell/grabs/moving.rs @@ -709,7 +709,7 @@ impl MoveGrab { { let cursor_state = seat.user_data().get::().unwrap(); - cursor_state.lock().unwrap().set_shape(CursorIcon::Grab); + cursor_state.lock().unwrap().set_shape(CursorIcon::Grabbing); } MoveGrab {