| 235 | } |
| 236 | |
| 237 | void ChatView::hideChannelSelector() { |
| 238 | if (!channelPanel || !msgList || !inputWrapper) return; |
| 239 | lv_obj_add_flag(channelPanel, LV_OBJ_FLAG_HIDDEN); |
| 240 | lv_obj_remove_flag(msgList, LV_OBJ_FLAG_HIDDEN); |
| 241 | lv_obj_remove_flag(inputWrapper, LV_OBJ_FLAG_HIDDEN); |
| 242 | } |
| 243 | |
| 244 | void ChatView::onSendClicked(lv_event_t* e) { |
| 245 | auto* self = static_cast<ChatView*>(lv_event_get_user_data(e)); |
no outgoing calls
no test coverage detected