Fixed bug number 10227.
This commit is contained in:
parent
2865641ffa
commit
b2d21371d3
|
@ -308,15 +308,19 @@ void message_box_wrnmsg_OnKeyMenu(lv_obj_t* msgbox)
|
|||
|
||||
void message_box_wrnmsg_OnKey(lv_obj_t* msgbox, uint32_t key)
|
||||
{
|
||||
// static uint32_t key22 = LV_KEY_END;
|
||||
// key22 = key;
|
||||
// lv_event_send(lv_obj_get_parent(UIFlowWrnMsg), LV_USER_EVENT_KEY_RELEASE, &key22);
|
||||
return;
|
||||
switch(key)
|
||||
{
|
||||
case LV_USER_KEY_MENU:
|
||||
message_box_wrnmsg_OnKeyMenu(msgbox);
|
||||
// message_box_wrnmsg_OnKeyMenu(msgbox);
|
||||
break;
|
||||
//#NT#2023/11/14#Eric - begin
|
||||
//#NT#Support IVOT_N12144_CO-148_A
|
||||
case LV_KEY_ENTER:
|
||||
UIFlowWrnMsg_CloseScr(NVTEVT_NULL);
|
||||
// UIFlowWrnMsg_CloseScr(NVTEVT_NULL);
|
||||
break;
|
||||
//#NT#2023/11/14#Eric - end
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue
Block a user