I am just trying to polish up this tool a bit:
https://forum.renoise.com/t/show-where-how-many-times-this-instrumentis-used/49630
There is a formatted string that automatically resizes the gui as you press UPDATE on different target instruments (as expected with default resizing behaviour).
I want to reset the size of the gui between UPDATE actions, as sometimes the larger strings can warp the gui dimensions too much.
To deal with this I have a main vb:column{ id = “main col” } which I have tried to reset in the instrument popup notifier:
vb.views["main col"].width = 300
however this seems to set the width permanently to 300, so that when subsequently a new long string is added to the GUI , it will no long resize the whole GUI and just gets truncated so you can`t read it all.
Any way to deal with this, to keep the dynamic re-sizing?