| 363 | } |
| 364 | |
| 365 | bool has_key(const lfs::vis::gui::PanelInputState& input, const int scancode) { |
| 366 | return std::find(input.keys_pressed.begin(), input.keys_pressed.end(), scancode) != |
| 367 | input.keys_pressed.end(); |
| 368 | } |
| 369 | |
| 370 | void mark_dirty(RmlPythonConsolePane& pane) { |
| 371 | if (pane.host) |
no test coverage detected