| 276 | } |
| 277 | |
| 278 | void ChatView::onChannelClicked(lv_event_t* e) { |
| 279 | auto* self = static_cast<ChatView*>(lv_event_get_user_data(e)); |
| 280 | self->showChannelSelector(); |
| 281 | } |
| 282 | |
| 283 | void ChatView::onChannelSave(lv_event_t* e) { |
| 284 | auto* self = static_cast<ChatView*>(lv_event_get_user_data(e)); |
nothing calls this directly
no test coverage detected