On Tue, 27 Feb 2024, Sven Schreiber wrote:
I have this reproducible behavior: Have an active dataset (e.g.,
australia.gdt), call a user-defined function that produces a list (and assign
the return value); the new series from the created list do not show up in the
GUI variable list. But they're there and can be accessed through console
commands.
To be concrete, here's a function for testing:
<hansl>
function list putL(void)
series s = normal()
list L = s
return L
end function
</hansl>
And I called it with 'list L = putL()'. Afterwards I can do 'print s' and
so
on, but it's not in the GUI.
I see what you mean. If you execute a list-returning script in the
console the GUI will update accordingly, but not via the script
editor. Looks like we need another stanza in the "update the GUI"
callback function.
Allin