From 17275dbf8fa8044c14c4732cd7f1acc87f13d593 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Mon, 2 Dec 2019 15:23:35 +0000 Subject: [PATCH] ComboBox: Added a repaint call to showPopupIfNotActive --- modules/juce_gui_basics/widgets/juce_ComboBox.cpp | 2 ++ 1 file changed, 2 insertions(+) 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(); } }