This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Accessibility: Set checked state in ButtonAccessibilityHandler::getCurrentState() if button is part of a radio group
v6.1.6
ed
4 years ago
parent
27ead031c0
commit
ffdfb5b436
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_gui_basics/buttons/juce_Button.cpp
+ 1
- 1
modules/juce_gui_basics/buttons/juce_Button.cpp
View File
@@ -715,7 +715,7 @@ public:
{
auto state = AccessibilityHandler::getCurrentState();
if (button.getClickingTogglesState())
if (button.getClickingTogglesState()
|| button.getRadioGroupId() != 0
)
{
state = state.withCheckable();
Write
Preview
Loading…
Cancel
Save