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

ComboBox: Added a repaint call to showPopupIfNotActive

This commit is contained in:
Tom Poole 2019-12-02 15:23:35 +00:00
parent 98f4056d6e
commit 17275dbf8f

View file

@ -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();
}
}