Hello,
I’ve got issues to understand why I can update values with the Quark connection from Sliders and not SmoothSliders from wslib.
Example :
(
~values = 10.collect { NumericControlValue() };
~sliders = 10.collect { /*Smooth*/Slider() };
~view = View(bounds:600@200).layout_(GridLayout.rows(~sliders)).front;
~connections = ConnectionList.make {
~values.connectEach(\value, ~sliders, _.valueSlot);
~sliders.connectEach(\value, ~values, _.valueSlot);
};
)
If I move the first Slider and then evaluate :
~values[0].value;
the slider updates well the values.
But If I change Slider to SmoothSlider, the value is not updated.
Why ?
How to update the value when I move a SmoothSlider ?
Many thanks,
Christophe