Skip to content
Snippets Groups Projects
Commit e823604b authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

update todo

parent 190fd653
No related branches found
No related tags found
No related merge requests found
...@@ -360,6 +360,20 @@ Everything else: (A [x] means we've fixed it) ...@@ -360,6 +360,20 @@ Everything else: (A [x] means we've fixed it)
[ ] revisit cursor logic-- when you leave the boundaries of an object [ ] revisit cursor logic-- when you leave the boundaries of an object
being dragged, for example, the cursor changes to whatever is set for being dragged, for example, the cursor changes to whatever is set for
the parent (svg, document, etc.). the parent (svg, document, etc.).
[ ] currently you can't send a message to the GUI with a single
array parameter:
gui_start_vmess("some_message", "");
gui_start_array();
gui_s("hello world");
gui_end_array();
gui_end_vmess();
Will output:
"some_message ,[\"hello world\"]"
which will cause a parser error
Practically, this isn't a big deal since most messages to the GUI
require a leading parameter before the array is sent.
Crashers Crashers
-------- --------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment