From 49dc20db6e17047bb7e35d1126933271ceee4642 Mon Sep 17 00:00:00 2001 From: reuk Date: Wed, 14 Aug 2024 16:33:07 +0100 Subject: [PATCH] ComboBox: Update accessibility handler to expose combo box title --- modules/juce_gui_basics/widgets/juce_ComboBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_gui_basics/widgets/juce_ComboBox.cpp b/modules/juce_gui_basics/widgets/juce_ComboBox.cpp index 047cba863a..c0cba0782e 100644 --- a/modules/juce_gui_basics/widgets/juce_ComboBox.cpp +++ b/modules/juce_gui_basics/widgets/juce_ComboBox.cpp @@ -678,7 +678,7 @@ public: return comboBox.isPopupActive() ? state.withExpanded() : state.withCollapsed(); } - String getTitle() const override { return comboBox.getText(); } + String getTitle() const override { return comboBox.getTitle(); } String getHelp() const override { return comboBox.getTooltip(); } private: