| 27 | } |
| 28 | |
| 29 | void PropertyPanelControl::HideControls() |
| 30 | { |
| 31 | for (auto& control : mPropertyControls) |
| 32 | { |
| 33 | control.second->setProperty(nullptr); |
| 34 | control.second->getRoot()->setVisible(false); |
| 35 | } |
| 36 | |
| 37 | mScrollView->setCanvasSize(0, 0); |
| 38 | mContentHeight = 0; |
| 39 | } |
| 40 | |
| 41 | void PropertyPanelControl::InitialiseProperty(PropertyPtr _property, int& _height) |
| 42 | { |
nothing calls this directly
no test coverage detected