1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-28 07:23:13 -04:00

[drag-and-drop] Add Grab and Grabbing CursorIcon:s

This commit is contained in:
Emil Ernerfeldt
2020-11-02 17:40:05 +01:00
parent c9c12f2d79
commit ed8a69ab2f
3 changed files with 8 additions and 1 deletions

View File

@@ -167,9 +167,11 @@ fn cursor_web_name(cursor: egui::CursorIcon) -> &'static str {
ResizeNwSe => "nwse-resize",
ResizeVertical => "ns-resize",
Text => "text",
Grab => "grab",
Grabbing => "grabbing",
// "no-drop"
// "not-allowed"
// default, help, pointer, progress, wait, cell, crosshair, text, alias, copy, move, grab, grabbing,
// default, help, pointer, progress, wait, cell, crosshair, text, alias, copy, move
}
}