Rename ResizingDiagonal* to ResizingDiagonally*
This commit is contained in:
parent
6dc71f6f3b
commit
1cbedfaac7
2 changed files with 4 additions and 4 deletions
|
|
@ -13,8 +13,8 @@ pub enum Interaction {
|
||||||
Grabbing,
|
Grabbing,
|
||||||
ResizingHorizontally,
|
ResizingHorizontally,
|
||||||
ResizingVertically,
|
ResizingVertically,
|
||||||
ResizingDiagonalUp,
|
ResizingDiagonallyUp,
|
||||||
ResizingDiagonalDown,
|
ResizingDiagonallyDown,
|
||||||
NotAllowed,
|
NotAllowed,
|
||||||
ZoomIn,
|
ZoomIn,
|
||||||
ZoomOut,
|
ZoomOut,
|
||||||
|
|
|
||||||
|
|
@ -423,10 +423,10 @@ pub fn mouse_interaction(
|
||||||
winit::window::CursorIcon::EwResize
|
winit::window::CursorIcon::EwResize
|
||||||
}
|
}
|
||||||
Interaction::ResizingVertically => winit::window::CursorIcon::NsResize,
|
Interaction::ResizingVertically => winit::window::CursorIcon::NsResize,
|
||||||
Interaction::ResizingDiagonalUp => {
|
Interaction::ResizingDiagonallyUp => {
|
||||||
winit::window::CursorIcon::NeswResize
|
winit::window::CursorIcon::NeswResize
|
||||||
}
|
}
|
||||||
Interaction::ResizingDiagonalDown => {
|
Interaction::ResizingDiagonallyDown => {
|
||||||
winit::window::CursorIcon::NwseResize
|
winit::window::CursorIcon::NwseResize
|
||||||
}
|
}
|
||||||
Interaction::NotAllowed => winit::window::CursorIcon::NotAllowed,
|
Interaction::NotAllowed => winit::window::CursorIcon::NotAllowed,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue