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:
parent
07bd8bedef
commit
be38da47e9
1 changed files with 1 additions and 1 deletions
|
|
@ -709,7 +709,7 @@ impl MoveGrab {
|
||||||
|
|
||||||
{
|
{
|
||||||
let cursor_state = seat.user_data().get::<CursorState>().unwrap();
|
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 {
|
MoveGrab {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue