Skip to content

Commit

Permalink
use Grabbing cursor instead of Grab cursor
Browse files Browse the repository at this point in the history
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".
  • Loading branch information
m4rch3n1ng authored and Drakulix committed Oct 8, 2024
1 parent 07bd8be commit be38da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shell/grabs/moving.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit be38da4

Please sign in to comment.