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
This commit is contained in:
parent
7de60bbce8
commit
496cf627e6
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user