| 298 | } |
| 299 | |
| 300 | bool Window_Interpreter::UiSubActionLine::IsVisible() const { |
| 301 | for (auto v : this->visibility_delegates) { |
| 302 | if (v()) |
| 303 | return true; |
| 304 | } |
| 305 | return false; |
| 306 | } |
| 307 | |
| 308 | void Window_Interpreter::UiSubActionLine::Update(Window_Selectable& parent) { |
| 309 | if (actions.size() == 0 || !visibility_delegates[this->index]()) |
no outgoing calls
no test coverage detected