diff --git a/modules/juce_gui_basics/widgets/juce_ComboBox.cpp b/modules/juce_gui_basics/widgets/juce_ComboBox.cpp index cf59fa8574..2acde36854 100644 --- a/modules/juce_gui_basics/widgets/juce_ComboBox.cpp +++ b/modules/juce_gui_basics/widgets/juce_ComboBox.cpp @@ -489,6 +489,8 @@ void ComboBox::showPopupIfNotActive() // showPopup asynchronously, we are giving the other popups a chance to properly // close themselves MessageManager::callAsync ([safePointer]() mutable { if (safePointer != nullptr) safePointer->showPopup(); }); + + repaint(); } }