| 662 | } |
| 663 | |
| 664 | WidgetConstructResult WidgetParser::containerHandler(String const& name, Json const& config) { |
| 665 | auto widget = widgetHandler(name, config); |
| 666 | widget.obj->disableScissoring(); |
| 667 | widget.obj->markAsContainer(); |
| 668 | return widget; |
| 669 | } |
| 670 | |
| 671 | WidgetConstructResult WidgetParser::layoutHandler(String const& name, Json const& config) { |
| 672 | String type; |
nothing calls this directly
no test coverage detected