Unverified Commit 496cf627 authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Delegate TestWindow.updateSemantics to the wrapped SingletonFlutterWindow (#114733)

This restores the updateSemantics capability in TestWindow that had been
removed in https://github.com/flutter/flutter/pull/113382
parent 7de60bbc
......@@ -463,6 +463,11 @@ class TestWindow implements ui.SingletonFlutterWindow {
platformDispatcher.onAccessibilityFeaturesChanged = callback;
}
@override
void updateSemantics(ui.SemanticsUpdate update) {
_window.updateSemantics(update);
}
@override
void setIsolateDebugName(String name) {
platformDispatcher.setIsolateDebugName(name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment