Skip to content

Commit

Permalink
fixing the method call for testing semantics (flutter#14056)
Browse files Browse the repository at this point in the history
  • Loading branch information
nturgut committed Nov 27, 2019
1 parent ca9cd2d commit 268107d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/web_ui/lib/src/engine/semantics/semantics_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class SemanticsHelper {
isDesktop ? DesktopSemanticsEnabler() : MobileSemanticsEnabler();

bool shouldEnableSemantics(html.Event event) {
return _enableSemantics.tryEnableSemantics(event);
return _enableSemantics.shouldEnableSemantics(event);
}

html.Element prepareAccesibilityPlaceholder() {
Expand Down

0 comments on commit 268107d

Please sign in to comment.