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

Accessibility: Update button labels in AccessibilityDemo to silence Accessibility Inspector audit warnings

This commit is contained in:
ed 2021-08-13 09:06:59 +01:00
parent dd18711493
commit 962f94837d

View file

@ -241,8 +241,8 @@ private:
//==============================================================================
RadioButtonsGroupComponent radioButtons;
TextButton textButton { "TextButton" };
ShapeButton shapeButton { "ShapeButton",
TextButton textButton { "Press me!" };
ShapeButton shapeButton { "Pressable JUCE Logo",
Colours::darkorange,
Colours::darkorange.brighter (0.5f),
Colours::darkorange.brighter (0.75f) };
@ -386,8 +386,8 @@ private:
//==============================================================================
Label descriptionLabel { {}, "This is a demo of a few of the accessible built-in JUCE widgets.\n\n"
"To navigate this demo with a screen reader, either enable VoiceOver on macOS "
"or Narrator on Windows and follow the navigational prompts." };
"To navigate this demo with a screen reader, either enable VoiceOver on macOS and iOS, "
"TalkBack on Android, or Narrator on Windows and follow the navigational prompts." };
ButtonsComponent buttonsComponent;
SlidersComponent slidersComponent;