Skip to content

Commit be38da4

Browse files
m4rch3n1ngDrakulix
authored andcommitted
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".
1 parent 07bd8be commit be38da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shell/grabs/moving.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ impl MoveGrab {
709709

710710
{
711711
let cursor_state = seat.user_data().get::<CursorState>().unwrap();
712-
cursor_state.lock().unwrap().set_shape(CursorIcon::Grab);
712+
cursor_state.lock().unwrap().set_shape(CursorIcon::Grabbing);
713713
}
714714

715715
MoveGrab {

0 commit comments

Comments
 (0)