diff --git a/iced_layershell/src/conversion.rs b/iced_layershell/src/conversion.rs index 4cfd1ca..496a54f 100644 --- a/iced_layershell/src/conversion.rs +++ b/iced_layershell/src/conversion.rs @@ -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(), } } diff --git a/iced_sessionlock/src/conversion.rs b/iced_sessionlock/src/conversion.rs index ce9d651..64c9b32 100644 --- a/iced_sessionlock/src/conversion.rs +++ b/iced_sessionlock/src/conversion.rs @@ -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(), } }