Commit b9c38711 authored by Ian Hickson's avatar Ian Hickson Committed by GitHub

Add debug info to offstage renderer (#6789)

parent f75e6074
......@@ -2323,6 +2323,12 @@ class RenderOffstage extends RenderProxyBox {
return;
super.visitChildrenForSemantics(visitor);
}
@override
void debugFillDescription(List<String> description) {
super.debugFillDescription(description);
description.add('offstage: $offstage');
}
}
/// A render object that absorbs pointers during hit testing.
......
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