add symbols for new cursors
This commit is contained in:
parent
e96322b351
commit
1fc7581f77
1 changed files with 4 additions and 1 deletions
|
@ -72,7 +72,10 @@ var setCursor = func(x = nil, y = nil, cursor = nil) {
|
|||
fgcommand("set-cursor", args);
|
||||
return args.getNode("cursor").getValue();
|
||||
}
|
||||
var cursor_types = { none: 0, pointer: 1, wait: 2, crosshair: 3, leftright: 4 };
|
||||
var cursor_types = { none: 0, pointer: 1, wait: 2, crosshair: 3, leftright: 4,
|
||||
topside: 5, bottomside: 6, leftside: 7, rightside: 8,
|
||||
topleft: 9, topright: 10, bottomleft: 11, bottomright: 12,
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue