| 389 | } |
| 390 | |
| 391 | bool is_context_capturing_input() { |
| 392 | return std::find_if(shown_contexts.begin(), shown_contexts.end(), [](auto& c){ return c.context.captures_input(); }) != shown_contexts.end(); |
| 393 | } |
| 394 | |
| 395 | bool is_context_capturing_mouse() { |
| 396 | return std::find_if(shown_contexts.begin(), shown_contexts.end(), [](auto& c){ return c.context.captures_mouse(); }) != shown_contexts.end(); |
nothing calls this directly
no test coverage detected