fix: touchscreen dhcp client button

This commit is contained in:
Siyuan 2025-10-13 15:57:36 +00:00
parent aa6f5b496d
commit b6a1eecc1f
2 changed files with 2 additions and 2 deletions

View File

@ -8561,7 +8561,7 @@
}, },
"group": "", "group": "",
"groupIndex": 0, "groupIndex": 0,
"text": "Press and hold for\n10 seconds", "text": "Press and hold for\n5 seconds",
"textType": "literal", "textType": "literal",
"longMode": "WRAP", "longMode": "WRAP",
"recolor": false, "recolor": false,

View File

@ -2341,7 +2341,7 @@ void create_screen_switch_dhcp_client_screen() {
lv_obj_set_size(obj, LV_PCT(100), LV_SIZE_CONTENT); lv_obj_set_size(obj, LV_PCT(100), LV_SIZE_CONTENT);
add_style_info_content_label(obj); add_style_info_content_label(obj);
lv_obj_set_style_text_font(obj, &ui_font_font_book20, LV_PART_MAIN | LV_STATE_DEFAULT); lv_obj_set_style_text_font(obj, &ui_font_font_book20, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_label_set_text(obj, "Press and hold for\n10 seconds"); lv_label_set_text(obj, "Press and hold for\n5 seconds");
} }
} }
} }