1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added method getCallOutBoxBorderSize() to look+feel.

This commit is contained in:
jules 2014-07-20 16:24:48 +01:00
parent bd5b47484f
commit 7f4270ef59
4 changed files with 7 additions and 1 deletions

View file

@ -91,7 +91,7 @@ void CallOutBox::setArrowSize (const float newSize)
int CallOutBox::getBorderSize() const noexcept
{
return jmax (20, (int) arrowSize);
return jmax (getLookAndFeel().getCallOutBoxBorderSize (*this), (int) arrowSize);
}
void CallOutBox::paint (Graphics& g)