diff --git a/modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.cpp b/modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.cpp index fdec21c6c9..768a21040d 100644 --- a/modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.cpp +++ b/modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.cpp @@ -287,7 +287,10 @@ void MultiChoicePropertyComponent::resized() auto bounds = getLookAndFeel().getPropertyComponentContentPosition (*this); bounds.removeFromBottom (5); - expandButton.setBounds (bounds.removeFromBottom (10)); + + auto buttonSlice = bounds.removeFromBottom (10); + expandButton.setSize (10, 10); + expandButton.setCentrePosition (buttonSlice.getCentre()); numHidden = 0;