Protection of beginChangeGesture() : with a gentle use of SpinLock?

IMHO it would suffice to have the ability to query a parameter, if a gesture is in progress.
I asked about that 9 months ago, but realised it wasn’t a FR.
You can vote now here:

Then you could simply do:

auto* myp = state.getParameter("mySliderParam");
if (!myp->isPerformingGesture())
{
    myp->beginChangeGesture();
    // ...
}
1 Like