Vector config items, swallow blank entries

If I put a vector containing blank entries into a config item, like so:

var v = DOpus.Create.Vector(); v.push_back("hi!"); v.push_back(""); v.push_back("hi2!"); data.config["v"] = v;

It swallows the blank entries:

That same vector used in a script has a length of 3 as expected.
I often try to separate lines in a config item by using blank lines, but there's no way.
So I need to insert strange characters to get some kind of separation:




Maybe you can keep innocent blank lines preset by the config and entered by user? o)

Thanks!

We'll fix this in the next update.