Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Accessibility: Add missing accessibility handler in TreeView Item
  • Loading branch information
reuk committed Jun 24, 2022
1 parent a1b3ce6 commit 6265f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/juce_gui_basics/widgets/juce_TreeView.cpp
Expand Up @@ -233,7 +233,7 @@ class TreeView::ItemComponent : public Component,
std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override
{
if (hasCustomComponent() && customComponent->getAccessibilityHandler() != nullptr)
return nullptr;
return createIgnoredAccessibilityHandler (*this);

return std::make_unique<ItemAccessibilityHandler> (*this);
}
Expand Down

0 comments on commit 6265f86

Please sign in to comment.