From bc64c30df68865b5353c35c31e09b08119834a4e Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 7 Oct 2021 10:02:05 +0100 Subject: [PATCH] Accessibility: Use more specific AccessibilityRole::dialogWindow for CallOutBox --- modules/juce_gui_basics/windows/juce_CallOutBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_gui_basics/windows/juce_CallOutBox.cpp b/modules/juce_gui_basics/windows/juce_CallOutBox.cpp index a95d92cdcd..3b08875d09 100644 --- a/modules/juce_gui_basics/windows/juce_CallOutBox.cpp +++ b/modules/juce_gui_basics/windows/juce_CallOutBox.cpp @@ -265,7 +265,7 @@ void CallOutBox::timerCallback() //============================================================================== std::unique_ptr CallOutBox::createAccessibilityHandler() { - return std::make_unique (*this, AccessibilityRole::window); + return std::make_unique (*this, AccessibilityRole::dialogWindow); } } // namespace juce