Skip to content

Commit 496cf62

Browse files
Delegate TestWindow.updateSemantics to the wrapped SingletonFlutterWindow (#114733)
This restores the updateSemantics capability in TestWindow that had been removed in flutter/flutter#113382
1 parent 7de60bb commit 496cf62

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/flutter_test/lib/src/window.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,11 @@ class TestWindow implements ui.SingletonFlutterWindow {
463463
platformDispatcher.onAccessibilityFeaturesChanged = callback;
464464
}
465465

466+
@override
467+
void updateSemantics(ui.SemanticsUpdate update) {
468+
_window.updateSemantics(update);
469+
}
470+
466471
@override
467472
void setIsolateDebugName(String name) {
468473
platformDispatcher.setIsolateDebugName(name);

0 commit comments

Comments
 (0)