Viewport refresh
-
Can the viewport be updated after the init has been ran? I have the viewport being changed on a callback, it doesn’t update when using the dll, but updates in the hise program. Any thoughts?
-
@coreyu21 I've noticed that both the Viewport and Comboboxes doesn't respond to
Vp.set("items", list with stuff.);
when the "items"-list is already set earlier,
instead I first clear the items and then set the updated items list back likeVp.set("items", ""); Vp.set("items", list of stuff);
It could have something to do with how I have written the code, I don't know, but this is the way I do it nowadays, I don't remember if it's always been like that
-
@ulrik thanks so much. That was the fix!
-
@ulrik -- yep always that way...