smith92clone Lv 1
There are several set_xxx() functions for FoldIt parameters.
None of these functions return any values.
It would be useful if the set_xxx() functions would return the previous value of the parameter being set.
Example: Current code
local save_param = get_xxx()
set_param(new_value)
... do something ...
set_param(save_param)
Return the previous value results in
local save_param = set_param(new_value)
... do something ...
set_param(save_param)