| 114 | } |
| 115 | |
| 116 | void ModEntryView::process_event(const Event &e) { |
| 117 | switch (e.type) { |
| 118 | case EventType::Update: |
| 119 | if (is_style_enabled(focus_state)) { |
| 120 | pulsing_style.set_color(recompui::get_pulse_color(750)); |
| 121 | apply_styles(); |
| 122 | queue_update(); |
| 123 | } |
| 124 | |
| 125 | break; |
| 126 | default: |
| 127 | break; |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | // ModEntryButton |
| 132 |
nothing calls this directly
no test coverage detected