Skip to content

Commit

Permalink
Update Android to use ViewFocused instead
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelkang committed Jul 27, 2021
1 parent 2ba1382 commit 4856e21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/src/Platform/Android/SemanticExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static void SetSemanticFocus(IFrameworkElement element)
{
var view = element.GetViewForAccessibility();

view?.SendAccessibilityEvent(EventTypes.ViewAccessibilityFocused);
view?.SendAccessibilityEvent(EventTypes.ViewFocused);
}

internal static View? GetViewForAccessibility(this IFrameworkElement element)
Expand Down

0 comments on commit 4856e21

Please sign in to comment.