| 133 | } |
| 134 | |
| 135 | void Container::HandleSetHierarchyLevel() { |
| 136 | Widget::HandleSetHierarchyLevel(); |
| 137 | |
| 138 | for( const auto& child : m_children ) { |
| 139 | child->SetHierarchyLevel( GetHierarchyLevel() + 1 ); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | void Container::HandleViewportUpdate() { |
| 144 | for( const auto& child : m_children ) { |
nothing calls this directly
no test coverage detected