Okay, I know this is a trivial issue, but nearly wasted a week of my life
Most components such as the Button variants and Slider Classes all offer primary value setters looking like this:
void Button::setToggleState (const bool shouldBeOn, const bool sendChangeNotification)
…which is perfectly fine.
However, the ComboBox class has a different signature:
void setSelectedItemIndex (int newItemIndex, bool dontSendChangeMessage = false);
In action, it is super easy to confuse both options and create evil endless loops in certain cases (especially when using JUCEs audio plugin example project’s UI update approach ;D ).
I’m well aware that this isn’t easy to fix without breaking old code. But it would be great to make these flags more consistent in a potential future update…