Slider mouse up

Here’s a suggestion for Slider::mouseUp. Instead of:

if (sendChangeOnlyOnRelease && valueOnMouseDown != currentValue) sendChangeMessage (this);

how about:

if (sendChangeOnlyOnRelease && valueOnMouseDown != currentValue) { sendChangeMessage (this); valueChanged (currentValue); }

This would save me some pain.

Matt

yes… I think you’re right there, I’ll add that.

OK, thanks, that solves a problem for me.