From 1fc7581f77151df6638705199872de3636f3db10 Mon Sep 17 00:00:00 2001 From: mfranz Date: Sun, 11 Jan 2009 15:04:55 +0000 Subject: [PATCH] add symbols for new cursors --- Nasal/gui.nas | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Nasal/gui.nas b/Nasal/gui.nas index 1488b6ee6..d576378ce 100644 --- a/Nasal/gui.nas +++ b/Nasal/gui.nas @@ -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, +};