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".
This commit is contained in:
may 2024-10-05 20:17:44 +02:00 committed by Victoria Brekenfeld
parent 07bd8bedef
commit be38da47e9

View file

@ -709,7 +709,7 @@ impl MoveGrab {
{
let cursor_state = seat.user_data().get::<CursorState>().unwrap();
cursor_state.lock().unwrap().set_shape(CursorIcon::Grab);
cursor_state.lock().unwrap().set_shape(CursorIcon::Grabbing);
}
MoveGrab {