Checkbox v 7.60

Description

Hello,
I have tested this simple code in v7.60
The LV_SYMBOL_OK is not present on the Checkbox

What MCU/Processor/Board and compiler are you using?

STM32F746G-DISCO

What do you experience?

What do you expect?

Code to reproduce

	  lv_init();
	  tft_init();
	  lv_port_indev_init();

	    lv_obj_t * cb = lv_checkbox_create(lv_scr_act(), NULL);
	    lv_checkbox_set_text(cb, "I agree to terms and conditions.");
	    lv_obj_align(cb, NULL, LV_ALIGN_CENTER, 0, 0);

	  	  while (1)
	  	  {
	  		  HAL_Delay(5);
	  		  lv_task_handler();
	  	  }

Screenshot and/or video


If possible, add screenshots and/or videos about the current issue.

I’m not sure that 7.6 includes the checkmark out of the box.

Hi,

It was discussed and fixed here: https://github.com/lvgl/lvgl/issues/1813

The version 7.7.0 has been fixed. :slightly_smiling_face:

1 Like