Skip to content

Commit

Permalink
fix: wrong cursor shape
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Jul 31, 2024
1 parent ecdd509 commit f43887a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions iced_layershell/src/conversion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ pub(crate) fn mouse_interaction(interaction: mouse::Interaction) -> String {
Interaction::Grabbing => "grabbing".to_owned(),
Interaction::Crosshair => "crosshair".to_owned(),
Interaction::NotAllowed => "not_allowed".to_owned(),
Interaction::ResizingVertically => "ew_resize".to_owned(),
Interaction::ResizingHorizontally => "ns_resize".to_owned(),
Interaction::ResizingVertically => "ns_resize".to_owned(),
Interaction::ResizingHorizontally => "ew_resize".to_owned(),
}
}

Expand Down
4 changes: 2 additions & 2 deletions iced_sessionlock/src/conversion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ pub(crate) fn mouse_interaction(interaction: mouse::Interaction) -> String {
Interaction::Grabbing => "grabbing".to_owned(),
Interaction::Crosshair => "crosshair".to_owned(),
Interaction::NotAllowed => "not_allowed".to_owned(),
Interaction::ResizingVertically => "ew_resize".to_owned(),
Interaction::ResizingHorizontally => "ns_resize".to_owned(),
Interaction::ResizingVertically => "ns_resize".to_owned(),
Interaction::ResizingHorizontally => "ew_resize".to_owned(),
}
}

Expand Down

0 comments on commit f43887a

Please sign in to comment.