Fixed bug number 10129.
This commit is contained in:
parent
791d3ca7fb
commit
825c419830
|
@ -1019,7 +1019,7 @@ void show_Camera_Info_page(lv_obj_t* obj)
|
|||
|
||||
init_Matrix_style();
|
||||
|
||||
btnm = lv_btnmatrix_create(lv_scr_act(), NULL);
|
||||
btnm = lv_btnmatrix_create(obj, NULL);
|
||||
lv_btnmatrix_set_map(btnm, map);
|
||||
lv_obj_add_style(btnm, 0, &gMatrixStylebg);
|
||||
lv_obj_add_style(btnm, 1, &gMatrixStylebtn);
|
||||
|
@ -1028,7 +1028,7 @@ void show_Camera_Info_page(lv_obj_t* obj)
|
|||
lv_btnmatrix_set_btn_ctrl_all(btnm, LV_BTNMATRIX_CTRL_CHECKABLE);
|
||||
lv_btnmatrix_set_focused_btn(btnm, 0);
|
||||
|
||||
CameraInfoImage = lv_img_create(lv_scr_act(), NULL);
|
||||
CameraInfoImage = lv_img_create(obj, NULL);
|
||||
lv_obj_set_hidden(CameraInfoImage, false);
|
||||
lv_obj_set_click(CameraInfoImage, false);
|
||||
lv_obj_set_drag(CameraInfoImage, false);
|
||||
|
|
Loading…
Reference in New Issue
Block a user