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

ComboBox: Update accessibility handler to expose combo box title

This commit is contained in:
reuk 2024-08-14 16:33:07 +01:00
parent d7d8155da9
commit 49dc20db6e
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -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: