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

Fix bug where a disabled ComboBox could be displayed using screen readers

This commit is contained in:
attila 2025-11-25 19:12:52 +01:00 committed by Attila Szarvas
parent 07f801143c
commit 65e9bf1c52

View file

@ -531,6 +531,9 @@ static void comboBoxPopupMenuFinishedCallback (int result, ComboBox* combo)
void ComboBox::showPopup()
{
if (! isEnabled())
return;
if (! menuActive)
menuActive = true;