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,
|
||||
ResizingHorizontally,
|
||||
ResizingVertically,
|
||||
ResizingDiagonalUp,
|
||||
ResizingDiagonalDown,
|
||||
ResizingDiagonallyUp,
|
||||
ResizingDiagonallyDown,
|
||||
NotAllowed,
|
||||
ZoomIn,
|
||||
ZoomOut,
|
||||
|
|
|
|||
|
|
@ -423,10 +423,10 @@ pub fn mouse_interaction(
|
|||
winit::window::CursorIcon::EwResize
|
||||
}
|
||||
Interaction::ResizingVertically => winit::window::CursorIcon::NsResize,
|
||||
Interaction::ResizingDiagonalUp => {
|
||||
Interaction::ResizingDiagonallyUp => {
|
||||
winit::window::CursorIcon::NeswResize
|
||||
}
|
||||
Interaction::ResizingDiagonalDown => {
|
||||
Interaction::ResizingDiagonallyDown => {
|
||||
winit::window::CursorIcon::NwseResize
|
||||
}
|
||||
Interaction::NotAllowed => winit::window::CursorIcon::NotAllowed,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue