Browse Source

Accessibility: Use more specific AccessibilityRole::dialogWindow for CallOutBox

v6.1.6
ed 4 years ago
parent
commit
bc64c30df6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_gui_basics/windows/juce_CallOutBox.cpp

+ 1
- 1
modules/juce_gui_basics/windows/juce_CallOutBox.cpp View File

@@ -265,7 +265,7 @@ void CallOutBox::timerCallback()
//==============================================================================
std::unique_ptr<AccessibilityHandler> CallOutBox::createAccessibilityHandler()
{
return std::make_unique<AccessibilityHandler> (*this, AccessibilityRole::window);
return std::make_unique<AccessibilityHandler> (*this, AccessibilityRole::dialogWindow);
}
} // namespace juce

Loading…
Cancel
Save