| 599 | } |
| 600 | |
| 601 | BaseWidget* FloatControllerPanel::GetSubPanel(const SubPanelType& type) { |
| 602 | if (sub_panels_.count(type) > 0) { |
| 603 | return sub_panels_[type]; |
| 604 | } |
| 605 | return nullptr; |
| 606 | } |
| 607 | |
| 608 | void FloatControllerPanel::HideAllSubPanels() { |
| 609 | for (const auto& [k, v] : sub_panels_) { |
nothing calls this directly
no outgoing calls
no test coverage detected