hey jules, i found that calling
BubbleComponent::setAllowedPlacement(BubblePlacement);
produces a unresolved external. dunnow if is correct not to implement this but if it is, i will dig a grave for me and my programming skillz.
lou
hey jules, i found that calling
BubbleComponent::setAllowedPlacement(BubblePlacement);
produces a unresolved external. dunnow if is correct not to implement this but if it is, i will dig a grave for me and my programming skillz.
lou
Well, it’s a real bug in JUCE …
anyway is easy as eating a cat…
//==============================================================================
void BubbleComponent::setAllowedPlacement (const int newPlacement)
{
allowablePlacements = newPlacement;
}
…just added
…fixed
lou
doh! Sorry…
It’s an easy one to add though:
void BubbleComponent::setAllowedPlacement (const int newPlacement)
{
allowablePlacements = newPlacement;
}
(ah, you beat me to it… great minds think alike…)