dashboard: fix setup keyboard done button

This commit is contained in:
2026-07-17 00:30:20 -06:00
parent b51990f4ff
commit 22a6d77be8
2 changed files with 18 additions and 1 deletions
@@ -1229,7 +1229,7 @@ static void setup_keyboard_event_cb(lv_event_t *event)
{
lv_event_code_t code = lv_event_get_code(event);
if (code == LV_EVENT_READY || code == LV_EVENT_CANCEL) {
if (code == LV_EVENT_READY || code == LV_EVENT_CANCEL || code == LV_EVENT_CLICKED) {
if (setup_keyboard != nullptr) {
lv_keyboard_set_textarea(setup_keyboard, nullptr);
lv_obj_add_flag(setup_keyboard, LV_OBJ_FLAG_HIDDEN);